trait Logger extends AnyRef
Basic trait for all logger implementations.
- Alphabetic
- By Inheritance
- Logger
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
- abstract def debug(msg: => AnyRef, t: => Throwable): Unit
Issue a debug logging message, with an exception.
Issue a debug logging message, with an exception.
- msg
the message object.
toString()is called to convert it to a loggable string.- t
the exception to include with the logged message.
- abstract def debug(msg: => AnyRef): Unit
Issue a debug logging message.
Issue a debug logging message.
- msg
the message object.
toString()is called to convert it to a loggable string.
- abstract def error(msg: => AnyRef, t: => Throwable): Unit
Issue a trace logging message, with an exception.
Issue a trace logging message, with an exception.
- msg
the message object.
toString()is called to convert it to a loggable string.- t
the exception to include with the logged message.
- abstract def error(msg: => AnyRef): Unit
Issue a trace logging message.
Issue a trace logging message.
- msg
the message object.
toString()is called to convert it to a loggable string.
- abstract def handlers: List[Handler]
Get the loggers list of handlers.
Get the loggers list of handlers.
- returns
the list of handlers
- abstract def info(msg: => AnyRef, t: => Throwable): Unit
Issue a trace logging message, with an exception.
Issue a trace logging message, with an exception.
- msg
the message object.
toString()is called to convert it to a loggable string.- t
the exception to include with the logged message.
- abstract def info(msg: => AnyRef): Unit
Issue a trace logging message.
Issue a trace logging message.
- msg
the message object.
toString()is called to convert it to a loggable string.
- abstract def isDebugEnabled: Boolean
Determine whether debug logging is enabled.
- abstract def isErrorEnabled: Boolean
Determine whether trace logging is enabled.
- abstract def isInfoEnabled: Boolean
Determine whether trace logging is enabled.
- abstract def isLevelEnabled(logLevel: LogLevel): Boolean
Determine whether a specific logging level is enabled.
Determine whether a specific logging level is enabled.
- logLevel
the level
- abstract def isTraceEnabled: Boolean
Determine whether trace logging is enabled.
- abstract def isWarnEnabled: Boolean
Determine whether trace logging is enabled.
- abstract val level: LogLevel
- abstract def log(logLevel: LogLevel, msg: => AnyRef): Unit
Log a message at an arbitrary level.
Log a message at an arbitrary level.
- logLevel
the level
- msg
the message to log
- abstract val name: String
- abstract def trace(msg: => AnyRef, t: => Throwable): Unit
Issue a trace logging message, with an exception.
Issue a trace logging message, with an exception.
- msg
the message object.
toString()is called to convert it to a loggable string.- t
the exception to include with the logged message.
- abstract def trace(msg: => AnyRef): Unit
Issue a trace logging message.
Issue a trace logging message.
- msg
the message object.
toString()is called to convert it to a loggable string.
- abstract def warn(msg: => AnyRef, t: => Throwable): Unit
Issue a warning logging message, with an exception.
Issue a warning logging message, with an exception.
- msg
the message object.
toString()is called to convert it to a loggable string.- t
the exception to include with the logged message.
- abstract def warn(msg: => AnyRef): Unit
Issue a warning logging message.
Issue a warning logging message.
- msg
the message object.
toString()is called to convert it to a loggable string.
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 def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.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[java.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 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()