Packages

p

org

log4s

package log4s

Source
package.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. log4s
  2. package-platform
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Package Members

  1. package log4sjs

Type Members

  1. sealed trait LogLevel extends AnyRef

    A severity level that can be assigned to log statements.

  2. final class Logger extends AnyVal
  3. trait package-platform extends AnyRef

Value Members

  1. final val AllThreshold: log4s.log4sjs.LogThreshold.AllThreshold.type
    Definition Classes
    package-platform
  2. final val Log4sConfig: Log4sConfig
    Definition Classes
    package-platform
  3. final val OffThreshold: log4s.log4sjs.LogThreshold.OffThreshold.type
    Definition Classes
    package-platform
  4. def getLogger(clazz: Class[_]): Logger
  5. def getLogger(name: String): Logger
  6. macro def getLogger: Logger
  7. case object Debug extends LogLevel with Product with Serializable

    Log statements that provide the ability to trace the progress and behavior involved in tracking a single activity.

    Log statements that provide the ability to trace the progress and behavior involved in tracking a single activity. These are useful for debugging general issues, identifying how modules are interacting, etc.

  8. case object Error extends LogLevel with Product with Serializable

    The highest logging severity.

    The highest logging severity. This generally indicates an application or system error that causes undesired outcomes. An error generally indicates a bug or an environment problem that warrants some kind of immediate intervention.

  9. case object Info extends LogLevel with Product with Serializable

    Indicates normal high-level activity.

    Indicates normal high-level activity. Generally a single user– or system-initiated activity will trigger one or two info-level statements. (E.g., one when starting and one when finishing for complex requests.)

  10. object LogLevel
  11. object Logger
  12. object MDC extends Map[String, String]

    A singleton used for accessing the mapped diagnostic context of your loggers.

    A singleton used for accessing the mapped diagnostic context of your loggers. This acts like a regular map, except that the values are different in every thread.

    Getting and setting single values and clearing the map are fast operations operations, but other operations, including getting the size, requires making a copy of the MDC.

  13. case object Trace extends LogLevel with Product with Serializable

    Highly localized log statements useful for tracking the decisions made inside a single unit of code.

    Highly localized log statements useful for tracking the decisions made inside a single unit of code. These may occur at a very high frequency.

  14. case object Warn extends LogLevel with Product with Serializable

    Generally indicates something is not expected but the system is able to continue operating.

    Generally indicates something is not expected but the system is able to continue operating. This generally indicates a bug or environment problem that does not require urgent intervention.

Inherited from package-platform

Inherited from AnyRef

Inherited from Any

Ungrouped