class
EventHandlerLog
extends Log
Instance Constructors
-
new
EventHandlerLog
(source: AnyRef)
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
debug
(msgFmt: String, a: ⇒ Any, b: ⇒ Any, c: ⇒ Any): Unit
-
def
debug
(msgFmt: String, a: ⇒ Any, b: ⇒ Any): Unit
-
def
debug
(msgFmt: String, a: ⇒ Any): Unit
-
def
debug
(msg: ⇒ String): Unit
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
error
(cause: Throwable, msgFmt: String, a: ⇒ Any, b: ⇒ Any, c: ⇒ Any): Unit
-
def
error
(cause: Throwable, msgFmt: String, a: ⇒ Any, b: ⇒ Any): Unit
-
def
error
(cause: Throwable, msgFmt: String, a: ⇒ Any): Unit
-
def
error
(cause: Throwable, msg: ⇒ String): Unit
-
def
error
(msgFmt: String, a: ⇒ Any, b: ⇒ Any, c: ⇒ Any): Unit
-
def
error
(msgFmt: String, a: ⇒ Any, b: ⇒ Any): Unit
-
def
error
(msgFmt: String, a: ⇒ Any): Unit
-
def
error
(msg: ⇒ String): Unit
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
info
(msgFmt: String, a: ⇒ Any, b: ⇒ Any, c: ⇒ Any): Unit
-
def
info
(msgFmt: String, a: ⇒ Any, b: ⇒ Any): Unit
-
def
info
(msgFmt: String, a: ⇒ Any): Unit
-
def
info
(msg: ⇒ String): Unit
-
def
isInstanceOf
[T0]
: Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
-
def
warn
(msgFmt: String, a: ⇒ Any, b: ⇒ Any, c: ⇒ Any): Unit
-
def
warn
(msgFmt: String, a: ⇒ Any, b: ⇒ Any): Unit
-
def
warn
(msgFmt: String, a: ⇒ Any): Unit
-
def
warn
(msg: ⇒ String): Unit
Inherited from AnyRef
Inherited from Any
Defines simple convenience logging methods that delegate to the Akka EventHandler. They only model logging calls generating log entries of type String, formatted via String.format with zero to three arguments. For most logging use cases this is enough. You will probably want to extend this trait, use your own or call the EventHandler directly in any one of these cases
In the last case it is better to not use String.format (due to its somewhat lower performance) but instead use some faster, more specialized String formatting, like the org.slf4j.helpers.MessageFormatter.