info method
Logs message at LogSeverity.info severity.
Details on how the parameters are handled can be found depending on the implementation.
See CloudLogger.defaultLogger and structuredLogEntry for more information.
Implementation
void info(
Object message, {
Map<String, Object?>? payload,
StackTrace? stackTrace,
}) =>
log(message, LogSeverity.info, payload: payload, stackTrace: stackTrace);