sealed abstract class LogOptions extends AnyRef

Logging options when using Behaviors.logMessages.

Annotations
@DoNotInherit()
Source
Logger.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LogOptions
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def enabled: Boolean
  2. abstract def getLogger: Optional[Logger]

    Java API

  3. abstract def level: LogLevel
  4. abstract def logger: Option[Logger]
  5. abstract def withEnabled(enabled: Boolean): LogOptions

    User control whether messages are logged or not.

    User control whether messages are logged or not. This is useful when you want to have an application configuration to control when to log messages.

  6. abstract def withLevel(level: LogLevel): LogOptions

    The akka.event.Logging.LogLevel to use when logging messages.

  7. abstract def withLogger(logger: Logger): LogOptions

    A akka.actor.typed.Logger to use when logging messages.