Documentation Menu

info Method

Creates a log item with severity INFO

Definition

info(logObject: any): Logger

Parameters

logObject String or object to be logged, or a function that returns the string or object to be logged (details).

Return Value

The Logger itself.

Examples

This creates a log message "log message" with severity INFO.

JL().info("log message");