semanticlogger / de.roamingthings.semanticlogger / SemanticLogger / asExpectedByDefault

asExpectedByDefault

fun asExpectedByDefault(message: String): Unit

Generate a logging message with info level.

Parameters

message - Message to be logged.

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

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

Parameters

format - The format.

arg - The argument.

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

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

Parameters

format - The format.

arg1 - The first argument.

arg2 - The second argument.

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

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

Parameters

format - The format.

arguments - A list of 3 or more arguments.

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

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

Parameters

msg - The message accompanying the exception.

t - The exception (throwable) to log.