package routing
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- class ConfigurableLogRouter extends LogRouter
- class LogConfigServiceImpl extends LogConfigService
- class StaticLogRouter extends LogRouter
When not configured,
logstage-adapter-slf4j
will log messages with level>= Info
tostdout
.When not configured,
logstage-adapter-slf4j
will log messages with level>= Info
tostdout
.Due to the global mutable nature of
slf4j
to configure slf4j logging you'll have to mutate a global singleton. To change its settings, replace itsLogRouter
with the same one you use elsewhere in your application.import logstage._ import izumi.logstage.api.routing.StaticLogRouter val myLogger = IzLogger() // configure SLF4j to use the same router that `myLogger` uses StaticLogRouter.instance.setup(myLogger.router)
Value Members
- object ConfigurableLogRouter
- object LogConfigServiceImpl
- object StaticLogRouter