Timber class

Constructors

Timber()

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

Static Properties

logLevel TimberLevel
Global Timber log level
getter/setter pair

Static Methods

d(String message) → dynamic
Prints a debug message on each installed tree. It does nothing if Timber.logLevel is warning or error
e(String message, {dynamic error, StackTrace? stackTrace}) → dynamic
Prints an error message on each installed tree.
i(String message) → dynamic
Prints a info message on each installed tree. It does nothing if Timber.logLevel is debug, warning or error
plantTree(TimberTree tree) → dynamic
Adds a tree to Timber
w(String message) → dynamic
Prints a warning message on each installed tree. It does nothing if Timber.logLevel is error