scribe

package scribe

Members list

Concise view

Type members

Classlikes

object ANSI

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
ANSI.type
case class ANSI(ansi: String, `type`: String, default: String)

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
implicit class AnyLogging(value: Any)

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
object Execution

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
case class Level(name: String, value: Double)

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Level

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Level.type
case class LogRecord(level: Level, levelValue: Double, messages: List[LoggableMessage], fileName: String, className: String, methodName: Option[String], line: Option[Int], column: Option[Int], thread: Thread, data: Map[String, () => Any], timeStamp: Long)

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object LogRecord

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
trait Loggable[-T]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
case class Logger(parentId: Option[LoggerId], modifiers: List[LogModifier], handlers: List[LogHandler], overrideClassName: Option[String], data: Map[String, () => Any], id: LoggerId) extends LoggerSupport[Unit]

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait LoggerSupport[Unit]
class Object
trait Matchable
class Any
object Logger

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Logger.type
final case class LoggerId(value: Long) extends AnyVal

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class AnyVal
trait Matchable
class Any
object LoggerId

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
trait LoggerSupport[F]

Attributes

Companion:
object
Graph
Supertypes
class Any
Known subtypes
class Logger

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
trait Logging

Logging is a mix-in to conveniently add logging support to any class or object.

Logging is a mix-in to conveniently add logging support to any class or object.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
class LoggingOutputStream(loggerId: LoggerId, level: Level, className: String, methodName: Option[String]) extends OutputStream

Attributes

Graph
Supertypes
class OutputStream
trait Flushable
trait Closeable
trait AutoCloseable
class Object
trait Matchable
class Any

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class FromClass
class FromId

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object Platform.type
final class Priority(val value: Double) extends AnyVal

Attributes

Companion:
object
Graph
Supertypes
class AnyVal
trait Matchable
class Any
object Priority

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
object Test

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Test.type

Value members

Concrete methods

def dispose(): Unit
def includes(level: Level)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Boolean
final override def log(record: LogRecord): Unit

Attributes

Definition Classes
override def log(level: Level, mdc: MDC, messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line): Unit

Attributes

Definition Classes

Inherited methods

def apply[Return](keyValues: (String, Any)*)(f: => Return): Return

Contextualize key/value pairs set on MDC. This will be made avoid on each log record within

Contextualize key/value pairs set on MDC. This will be made avoid on each log record within

Attributes

f

the context for which these MDC values are set

keyValues

tuples of key/value pairs to set on MDC

Inherited from:
LoggerSupport
def debug(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): F

Attributes

Inherited from:
LoggerSupport
def elapsed[Return](f: => Return)(implicit mdc: MDC): Return

Includes MDC elapsed to show elapsed time within the block

Includes MDC elapsed to show elapsed time within the block

Attributes

f

the code block to time

Inherited from:
LoggerSupport
def error(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): F

Attributes

Inherited from:
LoggerSupport
def info(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): F

Attributes

Inherited from:
LoggerSupport
def trace(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): F

Attributes

Inherited from:
LoggerSupport
def warn(messages: LoggableMessage*)(implicit pkg: Pkg, fileName: FileName, name: Name, line: Line, mdc: MDC): F

Attributes

Inherited from:
LoggerSupport

Concrete fields

lazy val lineSeparator: String

Implicits

Implicits

final implicit def AnyLogging(value: Any): AnyLogging
implicit def level2Double(level: Level): Double