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

slog.LevelLogBuilder.scala Maven / Gradle / Ivy

The newest version!
package slog

trait LevelLogBuilder[F[_]] {
  def apply(msg: String): F[Unit]
  def apply(ex: Throwable, msg: String): F[Unit]
  def withArg[T: StructureEncoder](key: String, value: => T): LogBuilder[F]
  def whenEnabled: WhenEnabledLogBuilder[F]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy