abstract class Logger extends AnyRef

Logging API provided inside of actors through the actor context.

All log-level methods support simple interpolation templates with up to four arguments placed by using {} within the template (first string argument):

ctx.log.error(exception, "Exception while processing {} in state {}", msg, state)

More than four arguments can be defined by using an Array with the method with one argument parameter.

*Rationale for an Akka-specific logging API:* Provided rather than a specific logging library logging API to not enforce a specific logging library on users but still providing a convenient, performant, asynchronous and testable logging solution. Additionally it allows unified logging for both user implemented actors and built in Akka actors where the actual logging backend can be selected by the user. This logging facade is also used by Akka internally, without having to depend on specific logging frameworks.

The Logger of an actor is tied to the actor path and should not be shared with other threads outside of the actor.

Not for user extension

Annotations
@DoNotInherit()
Source
Logger.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Logger
  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 debug(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  2. abstract def debug(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  3. abstract def debug(marker: LogMarker, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  4. abstract def debug(marker: LogMarker, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  5. abstract def debug(marker: LogMarker, message: String): Unit

    Log message at debug level.

    Log message at debug level.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  6. abstract def debug(template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  7. abstract def debug(template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  8. abstract def debug(template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  9. abstract def debug(template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  10. abstract def debug(message: String): Unit

    Log message at debug level.

    Log message at debug level.

    See also

    Logger

  11. abstract def error(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  12. abstract def error(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  13. abstract def error(marker: LogMarker, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  14. abstract def error(marker: LogMarker, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  15. abstract def error(marker: LogMarker, message: String): Unit

    Log message at error level, without providing the exception that caused the error.

    Log message at error level, without providing the exception that caused the error.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  16. abstract def error(marker: LogMarker, cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  17. abstract def error(marker: LogMarker, cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  18. abstract def error(marker: LogMarker, cause: Throwable, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  19. abstract def error(marker: LogMarker, cause: Throwable, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  20. abstract def error(marker: LogMarker, cause: Throwable, message: String): Unit

    Log message at error level, including the exception that caused the error.

    Log message at error level, including the exception that caused the error.

    See also

    Logger

  21. abstract def error(cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  22. abstract def error(cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  23. abstract def error(cause: Throwable, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  24. abstract def error(cause: Throwable, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  25. abstract def error(cause: Throwable, message: String): Unit

    Log message at error level, including the exception that caused the error.

    Log message at error level, including the exception that caused the error.

    See also

    Logger

  26. abstract def error(template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  27. abstract def error(template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  28. abstract def error(template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  29. abstract def error(template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  30. abstract def error(message: String): Unit

    Log message at error level, without providing the exception that caused the error.

    Log message at error level, without providing the exception that caused the error.

    See also

    Logger

  31. abstract def info(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  32. abstract def info(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  33. abstract def info(marker: LogMarker, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  34. abstract def info(marker: LogMarker, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  35. abstract def info(marker: LogMarker, message: String): Unit

    Log message at info level.

    Log message at info level.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  36. abstract def info(template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  37. abstract def info(template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  38. abstract def info(template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  39. abstract def info(template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  40. abstract def info(message: String): Unit

    Log message at info level.

    Log message at info level.

    See also

    Logger

  41. abstract def isDebugEnabled(marker: LogMarker): Boolean

    Whether debug logging with this marker is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  42. abstract def isDebugEnabled: Boolean

    Whether debug logging is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  43. abstract def isErrorEnabled(marker: LogMarker): Boolean

    Whether error logging with this marker is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  44. abstract def isErrorEnabled: Boolean

    Whether error logging is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  45. abstract def isInfoEnabled(marker: LogMarker): Boolean

    Whether info logging with this marker is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  46. abstract def isInfoEnabled: Boolean

    Whether info logging is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  47. abstract def isWarningEnabled(marker: LogMarker): Boolean

    Whether warning logging with this marker is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  48. abstract def isWarningEnabled: Boolean

    Whether warning logging is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  49. abstract def log(level: LogLevel, marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  50. abstract def log(level: LogLevel, marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  51. abstract def log(level: LogLevel, marker: LogMarker, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  52. abstract def log(level: LogLevel, marker: LogMarker, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  53. abstract def log(level: LogLevel, marker: LogMarker, message: String): Unit

    Log message at the specified level.

    Log message at the specified level.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  54. abstract def log(level: LogLevel, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  55. abstract def log(level: LogLevel, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  56. abstract def log(level: LogLevel, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  57. abstract def log(level: LogLevel, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  58. abstract def log(level: LogLevel, message: String): Unit

    Log message at the specified level.

    Log message at the specified level.

    See also

    Logger

  59. abstract def warning(marker: LogMarker, cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  60. abstract def warning(marker: LogMarker, cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  61. abstract def warning(marker: LogMarker, cause: Throwable, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  62. abstract def warning(marker: LogMarker, cause: Throwable, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  63. abstract def warning(marker: LogMarker, cause: Throwable, message: String): Unit

    Log message at warning level.

    Log message at warning level.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  64. abstract def warning(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  65. abstract def warning(marker: LogMarker, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  66. abstract def warning(marker: LogMarker, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    See also

    Logger

  67. abstract def warning(marker: LogMarker, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  68. abstract def warning(marker: LogMarker, message: String): Unit

    Log message at warning level.

    Log message at warning level.

    The marker argument can be picked up by various logging frameworks such as slf4j to mark this log statement as "special".

  69. abstract def warning(cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  70. abstract def warning(cause: Throwable, template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  71. abstract def warning(cause: Throwable, template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  72. abstract def warning(cause: Throwable, template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  73. abstract def warning(cause: Throwable, message: String): Unit

    Log message at warning level.

  74. abstract def warning(template: String, arg1: Any, arg2: Any, arg3: Any, arg4: Any): Unit

    Message template with 4 replacement arguments.

    Message template with 4 replacement arguments. For more parameters see the single replacement version of this method.

    See also

    Logger

  75. abstract def warning(template: String, arg1: Any, arg2: Any, arg3: Any): Unit

    Message template with 3 replacement arguments.

    Message template with 3 replacement arguments.

    See also

    Logger

  76. abstract def warning(template: String, arg1: Any, arg2: Any): Unit

    Message template with 2 replacement arguments.

    Message template with 2 replacement arguments.

    See also

    Logger

  77. abstract def warning(template: String, arg1: Any): Unit

    Message template with 1 replacement argument.

    Message template with 1 replacement argument.

    If arg1 is an Array it will be expanded into replacement arguments, which is useful when there are more than four arguments.

    See also

    Logger

  78. abstract def warning(message: String): Unit

    Log message at warning level.

  79. abstract def withLogSource(logSource: String): Logger

    Return a new logger sharing properties of this logger except the log source

  80. abstract def withLoggerClass(clazz: Class[_]): Logger

    Return a new logger sharing properties of this logger except the logger class

  81. abstract def withMdc(mdc: Map[String, Any]): Logger

    Java API: the returned logger will add the given MDC (Mapped Diagnostic Context) to any log entry logged

    Java API: the returned logger will add the given MDC (Mapped Diagnostic Context) to any log entry logged

    See also akka.actor.typed.javadsl.Behaviors.withMdc

  82. abstract def withMdc(mdc: Map[String, Any]): Logger

    Scala API: the returned logger will add the given MDC (Mapped Diagnostic Context) to any log entry logged

    Scala API: the returned logger will add the given MDC (Mapped Diagnostic Context) to any log entry logged

    See also akka.actor.typed.scaladsl.Behaviors.withMdc

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Logger to any2stringadd[Logger] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Logger, B)
    Implicit
    This member is added by an implicit conversion from Logger to ArrowAssoc[Logger] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. def ensuring(cond: (Logger) ⇒ Boolean, msg: ⇒ Any): Logger
    Implicit
    This member is added by an implicit conversion from Logger to Ensuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (Logger) ⇒ Boolean): Logger
    Implicit
    This member is added by an implicit conversion from Logger to Ensuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): Logger
    Implicit
    This member is added by an implicit conversion from Logger to Ensuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): Logger
    Implicit
    This member is added by an implicit conversion from Logger to Ensuring[Logger] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Logger to StringFormat[Logger] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def isLevelEnabled(logLevel: LogLevel, marker: LogMarker): Boolean

    Whether a log level with this marker is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  19. def isLevelEnabled(logLevel: LogLevel): Boolean

    Whether a log level is enabled on the actor system level, may not represent the setting all the way to the logger implementation, but when it does it allows avoiding unnecessary resource usage for log entries that will not actually end up in any logger output.

  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def [B](y: B): (Logger, B)
    Implicit
    This member is added by an implicit conversion from Logger to ArrowAssoc[Logger] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Logger to any2stringadd[Logger]

Inherited by implicit conversion StringFormat from Logger to StringFormat[Logger]

Inherited by implicit conversion Ensuring from Logger to Ensuring[Logger]

Inherited by implicit conversion ArrowAssoc from Logger to ArrowAssoc[Logger]

Ungrouped