log function
Logs message with LogSeverity.info severity.
Example:
logger.log('Request received');
Implementation
void log(
String message, [
Map<String, dynamic> payload = const {},
StackTrace? stackTrace,
]) => write(LogSeverity.info, message, payload, stackTrace);