trait IzLoggerConvenienceApi[Logger <: RoutingLogger] extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- IzLoggerConvenienceApi
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def make(r: LogRouter, context: CustomContext = CustomContext.empty): Logger
- Attributes
- protected[this]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final lazy val DebugLogger: Logger
Prints log messages as-is, suitable for logger debugging only
- final val Level: Log.Level.type
- final lazy val NullLogger: Logger
Ignores all log messages
- final def apply(router: LogRouter, customContext: CustomContext): Logger
- final def apply(router: LogRouter): Logger
- final def apply(threshold: Level, sinks: Seq[LogSink], levels: Map[String, Level]): Logger
- final def apply(threshold: Level, sinks: Seq[LogSink], levels: Map[String, Level], buffer: LogQueue): Logger
- final def apply(threshold: Level, sinks: Seq[LogSink], buffer: LogQueue): Logger
- final def apply(threshold: Level, sinks: Seq[LogSink]): Logger
- final def apply(threshold: Level = Log.Level.Trace, sink: LogSink = ConsoleSink.ColoredConsoleSink, levels: Map[String, Level] = Map.empty, buffer: LogQueue = LogQueue.Immediate): Logger
By default, a basic colored console logger with global Level.Trace minimum threshold
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def log(implicit izLogger: IzLogger): izLogger.type
Lets you refer to an implicit logger's methods without naming a variable
Lets you refer to an implicit logger's methods without naming a variable
import logstage.IzLogger.log def fn(implicit logger: IzLogger): Unit = { log.info(s"I'm logging with ${log}stage!") }
- Annotations
- @inline()
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()