warning method

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

When service is degraded, endangered, or may be behaving outside of its expected parameters, Warning level events are used.

Implementation

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