ConsoleLogger

object ConsoleLogger extends Logger

Provides logger to console.

trait Logger
class Object
trait Matchable
class Any

Value members

Concrete methods

def debug(message: String): Unit

Logs debug message.

Logs debug message.

def debug(format: String, args: Any*): Unit

Logs formatted debug message.

Logs formatted debug message.

def debug(message: String, cause: Throwable): Unit

Logs debug message and stack trace of given cause.

Logs debug message and stack trace of given cause.

def error(message: String): Unit

Logs error message.

Logs error message.

def error(format: String, args: Any*): Unit

Logs formatted error message.

Logs formatted error message.

def error(message: String, cause: Throwable): Unit

Logs error message and stack trace of given cause.

Logs error message and stack trace of given cause.

def info(message: String): Unit

Logs information message.

Logs information message.

def info(format: String, args: Any*): Unit

Logs formatted information message.

Logs formatted information message.

def info(message: String, cause: Throwable): Unit

Logs information message and stack trace of given cause.

Logs information message and stack trace of given cause.

def trace(message: String): Unit

Logs trace message.

Logs trace message.

def trace(format: String, args: Any*): Unit

Logs formatted trace message.

Logs formatted trace message.

def trace(message: String, cause: Throwable): Unit

Logs trace message and stack trace of given cause.

Logs trace message and stack trace of given cause.

def warn(message: String): Unit

Logs warning message.

Logs warning message.

def warn(format: String, args: Any*): Unit

Logs formatted warning message.

Logs formatted warning message.

def warn(message: String, cause: Throwable): Unit

Logs warning message and stack trace of given cause.

Logs warning message and stack trace of given cause.