You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying Kyo for the first time and may be doing something wrong here, but my expectation is that this should work (given my config) for all log levels except "debug":
It seems to me that this piece of code in kyo.internatl.LogPlatformSpecific:
val level =
if logger.isErrorEnabled() then Level.error
else if logger.isWarnEnabled() then Level.warn
else if logger.isInfoEnabled() then Level.info
else if logger.isDebugEnabled() then Level.debug
else Level.trace
... will always mean that the intended log level is error, because error is always isEnabled for all other levels (providing that i understand the isErrorEnabled function correctly).
The text was updated successfully, but these errors were encountered:
I am trying Kyo for the first time and may be doing something wrong here, but my expectation is that this should work (given my config) for all log levels except "debug":
Only the
Log.error
works despite that my logback level is set to "info", and the following is printed:18:53:34.303 [kyo-scheduler-worker-2] ERROR kyo.logs -- [App.scala:16:33] erroring
Here is the complete config:
It seems to me that this piece of code in kyo.internatl.LogPlatformSpecific:
... will always mean that the intended log level is error, because error is always isEnabled for all other levels (providing that i understand the isErrorEnabled function correctly).
The text was updated successfully, but these errors were encountered: