semanticlogger / de.roamingthings.semanticlogger / SemanticLogger / toInvestigateTomorrow

toInvestigateTomorrow

fun toInvestigateTomorrow(message: String): Unit

Generate a logging message with warn level.

Parameters

message - Message to be logged.

fun toInvestigateTomorrow(format: String, arg: Any): Unit

Generate a logging message with level of warn using the delegate logger.

Parameters

format - The format.

arg - The argument.

fun toInvestigateTomorrow(format: String, arg1: Any, arg2: Any): Unit

Generate a logging message with level of warn using the delegate logger.

Parameters

format - The format.

arg1 - The first argument.

arg2 - The second argument.

fun toInvestigateTomorrow(format: String, vararg arguments: Any): Unit

Generate a logging message with level of warn using the delegate logger.

Parameters

format - The format.

arguments - A list of 3 or more arguments.

fun toInvestigateTomorrow(msg: String, t: Throwable): Unit

Generate a logging message with level of warn using the delegate logger.

Parameters

msg - The message accompanying the exception.

t - The exception (throwable) to log.