abstract
class
Logger extends AnyRef
Instance Constructors
-
new
Logger()
Abstract Value Members
-
abstract
def
debug(message: String, e: Error): Unit
-
abstract
def
debug(message: String, t: Throwable): Unit
-
abstract
def
debug(message: String): Unit
-
abstract
def
error(message: String, e: Error): Unit
-
abstract
def
error(message: String, t: Throwable): Unit
-
abstract
def
error(message: String): Unit
-
abstract
def
getName(): String
-
abstract
def
info(message: String, e: Error): Unit
-
abstract
def
info(message: String, t: Throwable): Unit
-
abstract
def
info(message: String): Unit
-
abstract
def
isDebugEnabled(): Boolean
-
abstract
def
isErrorEnabled(): Boolean
-
abstract
def
isInfoEnabled(): Boolean
-
abstract
def
isTraceEnabled(): Boolean
-
abstract
def
isWarnEnabled(): Boolean
-
abstract
def
trace(message: String, e: Error): Unit
-
abstract
def
trace(message: String, t: Throwable): Unit
-
abstract
def
trace(message: String): Unit
-
abstract
def
warn(message: String, e: Error): Unit
-
abstract
def
warn(message: String, t: Throwable): Unit
-
abstract
def
warn(message: String): Unit
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (Logger, B)
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
ensuring(cond: (Logger) ⇒ Boolean, msg: ⇒ Any): Logger
-
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Logger
-
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
→[B](y: B): (Logger, B)
Inherited from AnyRef
Inherited from Any
Inherited by implicit conversion any2stringadd from
Logger to any2stringadd[Logger]
Inherited by implicit conversion StringFormat from
Logger to StringFormat[Logger]
Inherited by implicit conversion Ensuring from
Logger to Ensuring[Logger]
Inherited by implicit conversion ArrowAssoc from
Logger to ArrowAssoc[Logger]
A Scala reimplementation of the SLF4J API interface.
This is not meant to act as a replacement for SLF4J. Rather, its intended use is for non-JVM runtimes like ScalaJS and Scala Native where SLF4J itself is not available.