information method

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

Information events describe things happening in the system that correspond to its responsibilities and functions. Generally these are the observable actions the system can perform.

Implementation

void information(String message,
        {Map<String, dynamic> fields, Map<String, String> tags}) =>
    this.log('information', message, fields: fields, tags: tags);