verbose method

Future verbose(
  1. String message, {
  2. Map<String, dynamic>? fields,
  3. Map<String, String>? tags,
})

Verbose is the noisiest level, rarely (if ever) enabled for a production app.

Implementation

Future verbose(String message,
        {Map<String, dynamic>? fields, Map<String, String>? tags}) async =>
    await this.log('verbose', message, fields: fields, tags: tags);