Closed cholmes-axoni closed 1 month ago
Thanks for reporting this! 🙏 We're looking into it!
Fixed, my apologies
Also, I forgot to mention that there was a workaround:
val levelsMap = Map(
"org.test" -> Log.Level.Debug,
)
=>
val levelsMap = Map(
"org.test" -> Log.Level.Debug,
"org.test.*" -> Log.Level.Debug,
)
Though, of course, that has to be done at our side.
When specifying an exact match to the logger name or class. logstage no longer accepts the correct level configurations.
This seems to be more of an issue for loggers that route through logstage rather than logstage routers themselves. (SLF4J and JUL)
Example:
logstage-core version 1.2.12
logstage-core version 1.2.13