The slogging library does not tolerate cases when couple loggers with different names are used. Actually it forces developer to mixin StrictLogging even if you do not need the logger variable in the scope. We're using multiple loggers. Switching to basic Scala-logging library simplifies the code.
The
slogging
library does not tolerate cases when couple loggers with different names are used. Actually it forces developer to mixinStrictLogging
even if you do not need the logger variable in the scope. We're using multiple loggers. Switching to basic Scala-logging library simplifies the code.