Packages

object log

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. log
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(level: LogLevel)(line: => String): ZIO[Logging, Nothing, Unit]
  2. val context: URIO[Logging, LogContext]
  3. def debug(line: => String): ZIO[Logging, Nothing, Unit]
  4. def derive(f: (LogContext) => LogContext): ZIO[Logging, Nothing, Logger[String]]
  5. def error(line: => String, cause: Cause[Any]): ZIO[Logging, Nothing, Unit]
  6. def error(line: => String): ZIO[Logging, Nothing, Unit]
  7. def info(line: => String): ZIO[Logging, Nothing, Unit]
  8. def locally[R <: Logging, E, A1](fn: (LogContext) => LogContext)(zio: ZIO[R, E, A1]): ZIO[Logging with R, E, A1]
  9. def locallyM[R <: Logging, E, A1](fn: (LogContext) => URIO[R, LogContext])(zio: ZIO[R, E, A1]): ZIO[Logging with R, E, A1]
  10. def locallyManaged[R <: Logging, E, A1](fn: (LogContext) => LogContext)(managed: ZManaged[R, E, A1]): ZManaged[Logging with R, E, A1]
  11. def locallyZStream[R <: Logging, E, A1](fn: (LogContext) => LogContext)(stream: ZStream[R, E, A1]): ZStream[Logging with R, E, A1]
  12. def throwable(line: => String, t: Throwable): ZIO[Logging, Nothing, Unit]
  13. def trace(line: => String): ZIO[Logging, Nothing, Unit]
  14. def warn(line: => String, cause: Cause[Any]): ZIO[Logging, Nothing, Unit]
  15. def warn(line: => String): ZIO[Logging, Nothing, Unit]