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

slog.LogBuilder.scala Maven / Gradle / Ivy

The newest version!
package slog

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy