ᛒ
Size: a a a
ᛒ
ᛒ
Oℕ
Oℕ
Oℕ
w
K
Oℕ
a
V
λ
a
Oℕ
a
Oℕ
ΛВ
a
def log(msg: String, items: LogItem*)(implicit fn: File, line: Line): ZIO[Logging, Nothing, Unit] =
ZIO.accessM[Logging] { m => m.get[Logging.Service].log(msg, items:_*)(fn, line) }
def set[R, E, A](params: (String, base.Instance[Loggable])*)(action: ZIO[R, E, A]): ZIO[R with Logging, E, A] =
ZIO.accessM[R with Logging] { m => m.get[Logging.Service].set(params:_*)(action) }
def setMeta[R, E, A](params: (String, base.Instance[Loggable])*)(action: ZIO[R, E, A]): ZIO[R with Logging, E, A] =
ZIO.accessM[R with Logging] { m => m.get[Logging.Service].setMeta(params:_*)(action) }
K