Packages

package routing

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. class ConfigurableLogRouter extends LogRouter
  2. class LogConfigServiceImpl extends LogConfigService
  3. class StaticLogRouter extends LogRouter

    When not configured, logstage-adapter-slf4j will log messages with level >= Info to stdout.

    When not configured, logstage-adapter-slf4j will log messages with level >= Info to stdout.

    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 its LogRouter 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)

Ungrouped