LogLevel class

Defines logging levels for the DataDomeLogger.

The levels can be used to control the verbosity of logs.

  • verbose: Logs all messages (0).
  • info: Logs informational messages and above (1).
  • warning: Logs warnings and errors (2).
  • error: Logs only error messages (3).
  • none: Disables logging (4).

Constructors

LogLevel.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

error → const int
info → const int
none → const int
verbose → const int
warning → const int