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

almond.logger.internal.AddPrefixLogger.scala Maven / Gradle / Ivy

There is a newer version: 0.14.0-RC15
Show newest version
package almond.logger.internal

import almond.logger.Level

final case class AddPrefixLogger(
  underlying: ActualLogger,
  prefix: String
) extends ActualLogger {

  def level: Level =
    underlying.level

  def log(level: Level, message: String, exception: Throwable): Unit =
    underlying.log(level, prefix + message, exception)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy