Package

org

log4s

Permalink

package log4s

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. log4s
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait LogLevel extends AnyRef

    Permalink

    A severity level that can be assigned to log statements.

  2. final class Logger extends AnyVal

    Permalink

Value Members

  1. object Debug extends LogLevel with Product with Serializable

    Permalink

    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.

  2. object Error extends LogLevel with Product with Serializable

    Permalink

    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.

  3. object Info extends LogLevel with Product with Serializable

    Permalink

    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.)

  4. object Logger

    Permalink
  5. object MDC extends Map[String, String]

    Permalink

    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.

  6. object Trace extends LogLevel with Product with Serializable

    Permalink

    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.

  7. object Warn extends LogLevel with Product with Serializable

    Permalink

    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.

  8. def getLogger(clazz: Class[_]): Logger

    Permalink
  9. def getLogger(name: String): Logger

    Permalink
  10. macro def getLogger: Logger

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped