trait Logger[-A] extends AnyRef
- Alphabetic
- By Inheritance
- Logger
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def locally[R1, E, A1](f: (LogContext) => LogContext)(zio: ZIO[R1, E, A1]): ZIO[R1, E, A1]
Modifies the log context in the scope of the specified effect.
- abstract def log(line: => A): UIO[Unit]
Logs the specified element using an inherited log level.
- abstract def logContext: UIO[LogContext]
Retrieves the log context.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def contramap[A1](f: (A1) => A): Logger[A1]
Produces a new logger by adapting a different input type to the input type of this logger.
- def debug(line: => A): UIO[Unit]
Logs the specified element at the debug level.
- def debugM[R, E](line: ZIO[R, E, A]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the debug level
- def derive(f: (LogContext) => LogContext): Logger[A]
Derives a new logger from this one, by applying the specified decorator to the logger context.
- def deriveM[R](f: (LogContext) => ZIO[R, Nothing, LogContext]): ZIO[R, Nothing, Logger[A]]
Derives a new logger from this one, by applying the specified decorator to the logger context.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def error(line: => A, cause: Cause[Any]): UIO[Unit]
Logs the specified element at the error level with cause.
- def error(line: => A): UIO[Unit]
Logs the specified element at the error level.
- def errorM[R, E](line: ZIO[R, E, A], cause: Cause[Any]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the error level
- def errorM[R, E](line: ZIO[R, E, A]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the error level
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def info(line: => A): UIO[Unit]
Logs the specified element at the info level
- def infoM[R, E](line: ZIO[R, E, A]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the info level
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def locallyAnnotate[B, R, E, A1](annotation: LogAnnotation[B], value: B)(zio: ZIO[R, E, A1]): ZIO[R, E, A1]
Modifies the annotate in the scope of the specified effect.
- def locallyM[R1, E, A1](f: (LogContext) => URIO[R1, LogContext])(zio: ZIO[R1, E, A1]): ZIO[R1, E, A1]
Modifies the log context with effect in the scope of the specified effect.
- def locallyManaged[R1, E, A1](f: (LogContext) => LogContext)(managed: ZManaged[R1, E, A1]): ZManaged[R1, E, A1]
Modify log context in scope of Managed operation.
- def locallyZStream[R1, E, A1](f: (LogContext) => LogContext)(stream: ZStream[R1, E, A1]): ZStream[R1, E, A1]
Modify log context in scope of ZStream.
- def log(level: LogLevel)(line: => A): UIO[Unit]
Logs the specified element at the specified level.
Logs the specified element at the specified level. Implementations may override this for greater efficiency.
- def named(name: String): Logger[A]
Produces a named logger.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def throwable(line: => A, t: Throwable): UIO[Unit]
Logs the specified element at the error level with exception.
- def toString(): String
- Definition Classes
- AnyRef → Any
- def trace(line: => A): UIO[Unit]
Logs the specified element at the trace level.
- def traceM[R, E](line: ZIO[R, E, A]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the trace level
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def warn(line: => A, cause: Cause[Any]): UIO[Unit]
Logs the specified element at the warn level with cause.
- def warn(line: => A): UIO[Unit]
Logs the specified element at the warn level.
- def warnM[R, E](line: ZIO[R, E, A], cause: Cause[Any]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the warn level with cause
- def warnM[R, E](line: ZIO[R, E, A]): ZIO[R, E, Unit]
Evaluates the specified element based on the LogLevel set and logs at the warn level