case class IndentingLogger(indentLevel: Ref[IO, Int], putLog: (String, LogLevel) => IO[Unit], getIndent: (Int) => String = i => " " * i) extends TreeLogger[IO, String] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, TreeLogger[IO, String], Logger[IO, String], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IndentingLogger
  2. Serializable
  3. Product
  4. Equals
  5. TreeLogger
  6. Logger
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new IndentingLogger(indentLevel: Ref[IO, Int], putLog: (String, LogLevel) => IO[Unit], getIndent: (Int) => String = i => " " * i)

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 branch[A](msg: String, logLevel: LogLevel)(body: IO[A])(implicit ambientLevel: LogLevel): IO[A]
    Definition Classes
    TreeLogger
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def debug(msg: String)(implicit ambientLevel: LogLevel, F: Applicative[IO]): IO[Unit]
    Definition Classes
    Logger
  8. final def debugBranch[A](msg: String)(body: IO[A])(implicit ambientLevel: LogLevel): IO[A]
    Definition Classes
    TreeLogger
  9. def emit(msg: String, logLevel: LogLevel): IO[Unit]
    Definition Classes
    IndentingLoggerLogger
  10. def emitBranch[A](msg: String, logLevel: LogLevel)(body: IO[A]): IO[A]
    Definition Classes
    IndentingLoggerTreeLogger
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def error(msg: String)(implicit ambientLevel: LogLevel, F: Applicative[IO]): IO[Unit]
    Definition Classes
    Logger
  13. final def errorBranch[A](msg: String)(body: IO[A])(implicit ambientLevel: LogLevel): IO[A]
    Definition Classes
    TreeLogger
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. val getIndent: (Int) => String
  16. val indentLevel: Ref[IO, Int]
  17. final def info(msg: String)(implicit ambientLevel: LogLevel, F: Applicative[IO]): IO[Unit]
    Definition Classes
    Logger
  18. final def infoBranch[A](msg: String)(body: IO[A])(implicit ambientLevel: LogLevel): IO[A]
    Definition Classes
    TreeLogger
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def log(msg: String, level: LogLevel)(implicit ambientLevel: LogLevel, F: Applicative[IO]): IO[Unit]
    Definition Classes
    Logger
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def productElementNames: Iterator[String]
    Definition Classes
    Product
  25. val putLog: (String, LogLevel) => IO[Unit]
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. final def trace(msg: String)(implicit ambientLevel: LogLevel, F: Applicative[IO]): IO[Unit]
    Definition Classes
    Logger
  28. final def traceBranch[A](msg: String)(body: IO[A])(implicit ambientLevel: LogLevel): IO[A]
    Definition Classes
    TreeLogger
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def warn(msg: String)(implicit ambientLevel: LogLevel, F: Applicative[IO]): IO[Unit]
    Definition Classes
    Logger
  33. final def warnBranch[A](msg: String)(body: IO[A])(implicit ambientLevel: LogLevel): IO[A]
    Definition Classes
    TreeLogger

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from TreeLogger[IO, String]

Inherited from Logger[IO, String]

Inherited from AnyRef

Inherited from Any

Ungrouped