LoggerT

de.rmgk.logging$.LoggerT
case class LoggerT[T](tag: T, level: Level, logPrinter: LogPrinter[T])

Convenience methods for logging at certain levels. Tries to inline log calls so level check happens before method call.

Attributes

T

tag type passed to the log printer

level

minimum level that gets printed

logPrinter

handles printing and formatting the log messages

tag

tag to log with, used by the printer

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

final def debug(m: => Any)(implicit c: Context): Unit
final def error(m: => Any)(implicit c: Context): Unit
final def info(m: => Any)(implicit c: Context): Unit
final def log(l: Level, m: => Any)(implicit c: Context): Unit
final def trace(m: => Any)(implicit c: Context): Unit
final def warn(m: => Any)(implicit c: Context): Unit

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product