Packages

t

zio.logging

LoggerLike

trait LoggerLike[-A] extends AnyRef

Self Type
LoggerLike[A]
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LoggerLike
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. 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.

  2. abstract def log(line: => A): UIO[Unit]

    Logs the specified element using an inherited log level.

  3. abstract def logContext: UIO[LogContext]

    Retrieves the log context.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def contramap[A1](f: (A1) => A): LoggerLike[A1]

    Produces a new logger by adapting a different input type to the input type of this logger.

  7. def debug(line: => A): UIO[Unit]

    Logs the specified element at the debug level.

  8. def derive(f: (LogContext) => LogContext): LoggerLike[A]

    Derives a new logger from this one, by applying the specified decorator to the logger context.

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def error(line: => A, cause: Cause[Any]): ZIO[Any, Nothing, Unit]

    Logs the specified element at the error level with cause.

  12. def error(line: => A): UIO[Unit]

    Logs the specified element at the error level.

  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def info(line: => A): UIO[Unit]

    Logs the specified element at the info level

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. 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.

  19. 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.

  20. 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.

  21. def named(name: String): LoggerLike[A]

    Produces a named logger.

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def throwable(line: => A, t: Throwable): ZIO[Any, Nothing, Unit]

    Logs the specified element at the error level with exception.

  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. def trace(line: => A): UIO[Unit]

    Logs the specified element at the trace level.

  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. def warn(line: => A): UIO[Unit]

    Logs the specified element at the warn level.

Inherited from AnyRef

Inherited from Any

Ungrouped