Options for configuring the logger behavior.

interface LoggerOption {
    showLogType?: boolean;
    showTimestamp?: boolean;
}

Properties

showLogType?: boolean

Whether to show log types (e.g., info, error) in the log output.

showTimestamp?: boolean

Whether to show timestamps in the log output.