I'm running a ktor server and my logs are spammed ...
# ktor
s
I'm running a ktor server and my logs are spammed with a ton of "Selector didn't match" for each request. Anyone know how I can silence these messages?
c
Only log at DEBUG or higher, the route algorithm (what you're complaining about) is logged at TRACE
s
Ah, seems so obvious once you say it. Thanks!