c

tip.util

Logger

final case class Logger(tag: String, level: Level) extends Product with Serializable

A logger.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Logger(tag: String, level: Level)

Value Members

  1. def debug(message: String, t: Throwable): Unit

    Writes a message and a stack trace to the log at level "debug".

  2. def debug(message: String): Unit

    Writes a message to the log at level "debug" .

  3. def error(message: String, t: Throwable): Unit

    Writes a message and a stack trace to the log at level "error".

  4. def error(message: String): Unit

    Writes a message to the log at level "error" .

  5. def info(message: String, t: Throwable): Unit

    Writes a message and a stack trace to the log at level "info".

  6. def info(message: String): Unit

    Writes a message to the log at level "info" .

  7. var level: Level
  8. var tag: String
  9. def verb(message: String, t: Throwable): Unit

    Writes a message and a stack trace to the log at level "verbose".

  10. def verb(message: String): Unit

    Writes a message to the log at level "verbose" .

  11. def warn(message: String, t: Throwable): Unit

    Writes a message and a stack trace to the log at level "warn".

  12. def warn(message: String): Unit

    Writes a message to the log at level "warn" .