NoticeLevel class

A level of a notice log. In addition to the levels defined here, you can also define your own levels.

Constructors

NoticeLevel(int priority, String name)
Creates a new notice level. Take a look at the predefined levels before creating your own.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
name String
The name of this level. The name will be used in the log output.
final
priority int
The priority of this level.
final
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.
override

Operators

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

Constants

debug → const NoticeLevel
error → const NoticeLevel
fatal → const NoticeLevel
info → const NoticeLevel
trace → const NoticeLevel
warn → const NoticeLevel