info
Deprecated
Use info {} instead
Replace with
info { "$msg $arg"}
Log a message at the INFO level according to the specified msg and argument.
This form avoids superfluous object creation when the logger is disabled for the INFO level.
Parameters
the msg string
the argument
Deprecated
Use info {} instead
Replace with
info { "$msg $arg1 $arg2"}
Log a message at the INFO level according to the specified msg and arguments.
This form avoids superfluous object creation when the logger is disabled for the INFO level.
Parameters
the msg string
the first argument
the second argument
Deprecated
Use info {} instead
Replace with
info { "$msg $arguments"}
Log a message at the INFO level according to the specified msg and arguments.
This form avoids superfluous string concatenation when the logger is disabled for the INFO level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[]
before invoking the method, even if this logger is disabled for INFO. The variants taking .info and .info arguments exist solely in order to avoid this hidden cost.
Parameters
the msg string
a list of 3 or more arguments
Deprecated
Use info {} instead
Replace with
info { "$msg $arg"}
This method is similar to .info method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the msg string
the argument
Deprecated
Use info {} instead
Replace with
info { "$msg $arg1 $arg2"}
This method is similar to .info method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the msg string
the first argument
the second argument
Deprecated
Use info {} instead
Replace with
info { "$msg $arguments"}
This method is similar to .info method except that the marker data is also taken into consideration.
Parameters
the marker data specific to this log statement
the msg string
a list of 3 or more arguments