HumioExtensions extension
Methods
-
debug(String message, {Map<String, dynamic> fields, Map<String, String> tags})
→ void
-
Debug is used for internal system events that are not necessarily observable from the outside, but useful when determining how something happened.
-
error(String message, Object error, StackTrace stackTrace, {Map<String, dynamic> fields, Map<String, String> tags})
→ Future
-
When functionality is unavailable or expectations broken, an Error event is used.
-
fatal(String message, {Map<String, dynamic> fields, Map<String, String> tags})
→ void
-
The most critical level, Fatal events demand immediate attention.
-
information(String message, {Map<String, dynamic> fields, Map<String, String> tags})
→ void
-
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.
-
verbose(String message, {Map<String, dynamic> fields, Map<String, String> tags})
→ Future
-
Verbose is the noisiest level, rarely (if ever) enabled for a production app.
-
warning(String message, {Map<String, dynamic> fields, Map<String, String> tags})
→ void
-
When service is degraded, endangered, or may be behaving outside of its expected parameters, Warning level events are used.