Package

org.clapper

avsl

Permalink

package avsl

Visibility
  1. Public
  2. All

Type Members

  1. class AVSLConfigException extends AVSLException

    Permalink
  2. class AVSLConfigSectionException extends AVSLConfigException

    Permalink
  3. class AVSLException extends Exception

    Permalink
  4. class AVSLMissingRequiredOptionException extends AVSLConfigSectionException

    Permalink
  5. sealed abstract class LogLevel extends AnyRef

    Permalink
  6. case class LogMessage(name: String, date: Long, level: LogLevel, message: AnyRef, exception: Option[Throwable]) extends Product with Serializable

    Permalink

    All the pieces of a message, consolidated in one place.

    All the pieces of a message, consolidated in one place. This is how messages are passed to formatters and handlers.

    name

    the name (usually, the class name) of the logger issuing the message

    date

    the date of the message, as milliseconds from the epoch

    level

    the log level of the message

    exception

    an optional exception

  7. trait Logger extends AnyRef

    Permalink

    Basic trait for all logger implementations.

  8. class LoggerFactory extends AnyRef

    Permalink

    Logging factory.

    Logging factory. Generally, you don't need to access this class; the default factory is automatically used by the methods in the Logger object. However, for testing, it can be useful to generate a separate factory.

  9. class NullLogger extends Logger

    Permalink

    A null logger.

  10. class StandardLogger extends Logger

    Permalink

    The basic logger class.

    The basic logger class. This class provides its own Scala-friendly methods, as well as non-marker SLF4J methods.

Value Members

  1. object LogLevel

    Permalink

    Utility methods for log levels.

  2. object Logger

    Permalink

    Logger companion object.

  3. package config

    Permalink
  4. package formatter

    Permalink
  5. package handler

    Permalink
  6. package slf4j

    Permalink

Ungrouped