debug method

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

Debug is used for internal system events that are not necessarily observable from the outside, but useful when determining how something happened.

Implementation

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