All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.slf4s.Logger.scala Maven / Gradle / Ivy

There is a newer version: 1.7.30.2
Show newest version
package org.slf4s

import org.slf4j.{Logger => Underlying}

class Logger(val underlying: Underlying) {
  def trace(msg: String): Unit = macro LoggerMacro.trace
  def trace(msg: String, t: Throwable): Unit = macro LoggerMacro.traceT
  def debug(msg: String): Unit = macro LoggerMacro.debug
  def debug(msg: String, t: Throwable): Unit = macro LoggerMacro.debugT
  def info(msg: String): Unit = macro LoggerMacro.info
  def info(msg: String, t: Throwable): Unit = macro LoggerMacro.infoT
  def warn(msg: String): Unit = macro LoggerMacro.warn
  def warn(msg: String, t: Throwable): Unit = macro LoggerMacro.warnT
  def error(msg: String): Unit = macro LoggerMacro.error
  def error(msg: String, t: Throwable): Unit = macro LoggerMacro.errorT
}

object Logger {
  def apply(underlying: Underlying): Logger = new Logger(underlying)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy