debug method
Debug is used for internal system events that are not necessarily observable from the outside, but useful when determining how something happened.
Implementation
void debug(String message,
{Map<String, dynamic> fields, Map<String, String> tags}) =>
this.log('debug', message, fields: fields, tags: tags);