logger top-level property
Default Logger instance.
This is the primary way to use the logger:
import 'package:firebase_functions/logger.dart';
logger.info('Hello');
logger.warn('Something is off', {'requestId': 'abc'});
Implementation
final logger = Logger._();