object Logger
Static logger for issuing log entries.
- Alphabetic
- By Inheritance
- Logger
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
macro
def
debug(exception: Throwable, message: String, arguments: () ⇒ Any*): Unit
Logs an exception with a formatted message at org.tinylog.Level#TRACE.
Logs an exception with a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
debug(exception: Throwable, message: String, arguments: Any*): Unit
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE.
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
debug(exception: Throwable, message: () ⇒ String): Unit
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE.
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Function that produces the message
-
macro
def
debug(exception: Throwable, message: String): Unit
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Messages with embedded variables will be evaluated lazy by a macro.
- exception
Caught exception or any other throwable to log
- message
Text message to log
-
macro
def
debug(exception: Throwable): Unit
Logs an exception at org.tinylog.Level#TRACE.
Logs an exception at org.tinylog.Level#TRACE.
- exception
Caught exception or any other throwable to log
-
macro
def
debug(message: String, arguments: () ⇒ Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE level.
Logs a formatted message at org.tinylog.Level#TRACE level. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
debug(message: String, arguments: Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE.
Logs a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
debug(message: () ⇒ String): Unit
Logs a lazy message at org.tinylog.Level#TRACE.
Logs a lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- message
Function that produces the message
-
macro
def
debug(message: String): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
Strings with embedded variables will be evaluated lazy by a macro.
- message
Text message to log
-
macro
def
debug(message: Any): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
- message
Any object with a meaningful
toString()
method
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
macro
def
error(exception: Throwable, message: String, arguments: () ⇒ Any*): Unit
Logs an exception with a formatted message at org.tinylog.Level#TRACE.
Logs an exception with a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
error(exception: Throwable, message: String, arguments: Any*): Unit
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE.
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
error(exception: Throwable, message: () ⇒ String): Unit
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE.
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Function that produces the message
-
macro
def
error(exception: Throwable, message: String): Unit
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Messages with embedded variables will be evaluated lazy by a macro.
- exception
Caught exception or any other throwable to log
- message
Text message to log
-
macro
def
error(exception: Throwable): Unit
Logs an exception at org.tinylog.Level#TRACE.
Logs an exception at org.tinylog.Level#TRACE.
- exception
Caught exception or any other throwable to log
-
macro
def
error(message: String, arguments: () ⇒ Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE level.
Logs a formatted message at org.tinylog.Level#TRACE level. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
error(message: String, arguments: Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE.
Logs a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
error(message: () ⇒ String): Unit
Logs a lazy message at org.tinylog.Level#TRACE.
Logs a lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- message
Function that produces the message
-
macro
def
error(message: String): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
Strings with embedded variables will be evaluated lazy by a macro.
- message
Text message to log
-
macro
def
error(message: Any): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
- message
Any object with a meaningful
toString()
method
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
macro
def
info(exception: Throwable, message: String, arguments: () ⇒ Any*): Unit
Logs an exception with a formatted message at org.tinylog.Level#TRACE.
Logs an exception with a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
info(exception: Throwable, message: String, arguments: Any*): Unit
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE.
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
info(exception: Throwable, message: () ⇒ String): Unit
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE.
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Function that produces the message
-
macro
def
info(exception: Throwable, message: String): Unit
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Messages with embedded variables will be evaluated lazy by a macro.
- exception
Caught exception or any other throwable to log
- message
Text message to log
-
macro
def
info(exception: Throwable): Unit
Logs an exception at org.tinylog.Level#TRACE.
Logs an exception at org.tinylog.Level#TRACE.
- exception
Caught exception or any other throwable to log
-
macro
def
info(message: String, arguments: () ⇒ Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE level.
Logs a formatted message at org.tinylog.Level#TRACE level. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
info(message: String, arguments: Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE.
Logs a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
info(message: () ⇒ String): Unit
Logs a lazy message at org.tinylog.Level#TRACE.
Logs a lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- message
Function that produces the message
-
macro
def
info(message: String): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
Strings with embedded variables will be evaluated lazy by a macro.
- message
Text message to log
-
macro
def
info(message: Any): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
- message
Any object with a meaningful
toString()
method
-
macro
def
isDebugEnabled(): Boolean
Checks whether log entries at org.tinylog.Level#TRACE will be output.
Checks whether log entries at org.tinylog.Level#TRACE will be output.
- returns
true
if org.tinylog.Level#TRACE level is enabled,false
if disabled
-
macro
def
isErrorEnabled(): Boolean
Checks whether log entries at org.tinylog.Level#TRACE will be output.
Checks whether log entries at org.tinylog.Level#TRACE will be output.
- returns
true
if org.tinylog.Level#TRACE level is enabled,false
if disabled
-
macro
def
isInfoEnabled(): Boolean
Checks whether log entries at org.tinylog.Level#TRACE will be output.
Checks whether log entries at org.tinylog.Level#TRACE will be output.
- returns
true
if org.tinylog.Level#TRACE level is enabled,false
if disabled
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
macro
def
isTraceEnabled(): Boolean
Checks whether log entries at org.tinylog.Level#TRACE will be output.
Checks whether log entries at org.tinylog.Level#TRACE will be output.
- returns
true
if org.tinylog.Level#TRACE level is enabled,false
if disabled
-
macro
def
isWarnEnabled(): Boolean
Checks whether log entries at org.tinylog.Level#TRACE will be output.
Checks whether log entries at org.tinylog.Level#TRACE will be output.
- returns
true
if org.tinylog.Level#TRACE level is enabled,false
if disabled
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tag(tag: String): TaggedLogger
Gets a tagged logger instance.
Gets a tagged logger instance. Tags are case-sensitive.
- tag
Tag for logger or
null
for receiving an untagged logger- returns
Logger instance
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
macro
def
trace(exception: Throwable, message: String, arguments: () ⇒ Any*): Unit
Logs an exception with a formatted message at org.tinylog.Level#TRACE.
Logs an exception with a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
trace(exception: Throwable, message: String, arguments: Any*): Unit
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE.
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
trace(exception: Throwable, message: () ⇒ String): Unit
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE.
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Function that produces the message
-
macro
def
trace(exception: Throwable, message: String): Unit
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Messages with embedded variables will be evaluated lazy by a macro.
- exception
Caught exception or any other throwable to log
- message
Text message to log
-
macro
def
trace(exception: Throwable): Unit
Logs an exception at org.tinylog.Level#TRACE.
Logs an exception at org.tinylog.Level#TRACE.
- exception
Caught exception or any other throwable to log
-
macro
def
trace(message: String, arguments: () ⇒ Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE level.
Logs a formatted message at org.tinylog.Level#TRACE level. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
trace(message: String, arguments: Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE.
Logs a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
trace(message: () ⇒ String): Unit
Logs a lazy message at org.tinylog.Level#TRACE.
Logs a lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- message
Function that produces the message
-
macro
def
trace(message: String): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
Strings with embedded variables will be evaluated lazy by a macro.
- message
Text message to log
-
macro
def
trace(message: Any): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
- message
Any object with a meaningful
toString()
method
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
macro
def
warn(exception: Throwable, message: String, arguments: () ⇒ Any*): Unit
Logs an exception with a formatted message at org.tinylog.Level#TRACE.
Logs an exception with a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
warn(exception: Throwable, message: String, arguments: Any*): Unit
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE.
Logs an exception with a formatted custom message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- exception
Caught exception or any other throwable to log
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
warn(exception: Throwable, message: () ⇒ String): Unit
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE.
Logs an exception with a custom lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- exception
Caught exception or any other throwable to log
- message
Function that produces the message
-
macro
def
warn(exception: Throwable, message: String): Unit
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Logs an exception with a custom message at org.tinylog.Level#TRACE.
Messages with embedded variables will be evaluated lazy by a macro.
- exception
Caught exception or any other throwable to log
- message
Text message to log
-
macro
def
warn(exception: Throwable): Unit
Logs an exception at org.tinylog.Level#TRACE.
Logs an exception at org.tinylog.Level#TRACE.
- exception
Caught exception or any other throwable to log
-
macro
def
warn(message: String, arguments: () ⇒ Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE level.
Logs a formatted message at org.tinylog.Level#TRACE level. "{}" placeholders will be replaced by given lazy arguments. The arguments will be only evaluated if the log entry is really output.
- message
Formatted text message to log
- arguments
Functions that produce the arguments for formatted text message
-
macro
def
warn(message: String, arguments: Any*): Unit
Logs a formatted message at org.tinylog.Level#TRACE.
Logs a formatted message at org.tinylog.Level#TRACE. "{}" placeholders will be replaced by given arguments.
- message
Formatted text message to log
- arguments
Arguments for formatted text message
-
macro
def
warn(message: () ⇒ String): Unit
Logs a lazy message at org.tinylog.Level#TRACE.
Logs a lazy message at org.tinylog.Level#TRACE. The message will be only evaluated if the log entry is really output.
- message
Function that produces the message
-
macro
def
warn(message: String): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
Strings with embedded variables will be evaluated lazy by a macro.
- message
Text message to log
-
macro
def
warn(message: Any): Unit
Logs a message at org.tinylog.Level#TRACE.
Logs a message at org.tinylog.Level#TRACE.
- message
Any object with a meaningful
toString()
method