Package

wvlet

log

Permalink

package log

Visibility
  1. Public
  2. All

Type Members

  1. class AsyncHandler extends Handler with Guard with AutoCloseable with Flushable

    Permalink

    Logging using background thread

  2. class BufferedLogHandler extends Handler

    Permalink

    Handlers for storing log messages as a sequence.

    Handlers for storing log messages as a sequence. This is useful for debugging.

  3. class ConsoleLogHandler extends Handler

    Permalink

    Output log to stderr

  4. class FileHandler extends LogRotationHandler

    Permalink

    Writing logs to a file without rotation.

    Writing logs to a file without rotation. This is just an wrapper of LogRotationHandler

  5. trait Guard extends AnyRef

    Permalink

  6. trait LazyLogger extends AnyRef

    Permalink

    Trait for adding a local logger instance to your class

  7. trait LocalLogSupport extends LoggingMethods with LocalLogger

    Permalink

    Trait for adding logging methods and an initialized logger instance

  8. trait LocalLogger extends AnyRef

    Permalink

    Trait for adding an initialized logger instance to your class

  9. trait LogFormatter extends Formatter

    Permalink

    To implement your own log formatter, implement this formatLog(r: LogRecord) method

  10. sealed abstract class LogLevel extends Ordered[LogLevel] with Serializable

    Permalink
  11. case class LogLevelScannerConfig(logLevelFileCandidates: Seq[String], scanInterval: Duration = Duration(1, TimeUnit.MINUTES)) extends Product with Serializable

    Permalink
  12. case class LogRecord(level: LogLevel, source: Option[LogSource], message: String, cause: Option[Throwable]) extends java.util.logging.LogRecord with Product with Serializable

    Permalink
  13. class LogRotationHandler extends Handler with AutoCloseable with Flushable

    Permalink

    Log rotation handler

  14. case class LogSource(path: String, fileName: String, line: Int, col: Int) extends Product with Serializable

    Permalink

    Source code location where the log is

  15. trait LogSupport extends LoggingMethods with LazyLogger

    Permalink

    Trait for adding logging methods (error, warn, info, debug and trace) to your class

  16. class Logger extends Serializable

    Permalink

    An wrapper of java.util.logging.Logger for supporting rich-format logging

  17. trait LoggingMethods extends Serializable

    Permalink
  18. trait PublicLoggingMethods extends Serializable

    Permalink

Value Members

  1. object LogFormatter

    Permalink
  2. object LogLevel extends Serializable

    Permalink

    log level definitions

  3. object LogLevelScanner

    Permalink
  4. object LogRecord extends Serializable

    Permalink
  5. object LogRotationHandler

    Permalink
  6. object LogTimestampFormatter

    Permalink

  7. object Logger extends Serializable

    Permalink
  8. object NullHandler extends Handler

    Permalink

    Handlers for discarding logs

  9. package io

    Permalink

Ungrouped