reactive

Logger

trait Logger extends AnyRef

This trait supplies semantic logging capabilities. Logged events are fired from the corresponding event streams in the Logger singleton

Source
Logger.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Logger
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class LogEvent(subject: AnyRef, predicate: Any) extends Product with Serializable

  2. trait LogEventPredicate extends AnyRef

    Annotations
    @deprecated
    Deprecated

    (Since version scala.this.deprecated.init$default$2) No longer needed; predicates can be Any

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def error(pred: ⇒ Any): Unit

    Log a semantic event at the error level

  11. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def log(level: Value, pred: ⇒ Any): Unit

    Log a semantic event at the specified level

  16. var logLevel: Value

  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def setLogLevel(level: Value): Logger.this.type

    Sets the log level and returns the original instance.

    Sets the log level and returns the original instance. So for instance: eventSource.setLogLevel(Logger.Levels.None).fire(mouseEvent) val lessThanTen = eventStream.setLogLevel(Logger.Levels.Trace).filter(_ < 10)

  21. def subject: Logger

    The subject parameter that LogEvents will be created with

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. def trace(pred: ⇒ Any): Unit

    Log a semantic event at the trace level

  25. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  26. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  27. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. def warn(pred: ⇒ Any): Unit

    Log a semantic event at the warning level

Inherited from AnyRef

Inherited from Any