t

izumi.logstage.api.logger

AbstractLogger

trait AbstractLogger extends AbstractLoggerF[Identity]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractLogger
  2. AbstractLoggerF
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Self <: AbstractLogger
    Definition Classes
    AbstractLoggerAbstractLoggerF

Abstract Value Members

  1. abstract def acceptable(position: CodePosition, logLevel: Level): Boolean

    Check if loggerId is not blacklisted and logLevel is above the configured threshold

    Check if loggerId is not blacklisted and logLevel is above the configured threshold

    Definition Classes
    AbstractLoggerAbstractLoggerF
  2. abstract def unsafeLog(entry: Entry): Unit

    Log irrespective of the log level threshold

    Log irrespective of the log level threshold

    Definition Classes
    AbstractLoggerAbstractLoggerF
  3. abstract def withCustomContext(context: CustomContext): Self
    Definition Classes
    AbstractLoggerF

Concrete Value Members

  1. final def apply(context: CustomContext): Self
    Definition Classes
    AbstractLoggerF
    Annotations
    @inline()
  2. final def log(logLevel: Level)(messageThunk: => Message)(implicit pos: CodePositionMaterializer): Identity[Unit]

    Construct Entry and log if logLevel is above the threshold configured for this logger.

    Construct Entry and log if logLevel is above the threshold configured for this logger.

    Does not allocate Entry if logLevel is below the requirement

    Definition Classes
    AbstractLoggerF
    Annotations
    @inline()
  3. final def log(entry: Entry): Identity[Unit]

    Log Entry if logLevel is above the threshold configured for this logger.

    Log Entry if logLevel is above the threshold configured for this logger.

    Definition Classes
    AbstractLoggerF
    Annotations
    @inline()