i have added this to my build file `implementation...
# ktor
k
i have added this to my build file
implementation("ch.qos.logback:logback-classic:1.2.3")
per https://ktor.io/servers/logging.html, but still get the warning SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
I just want basic logging to stdout/stderr for now
d
You need to configure logback by adding logback.xml to the class path (put the file in the resources folder). You can find examples of this online. Alternatively, use slf4j-simple dependency instead.
k
interesting. the page makes it sound otherwise.