Logger class

Loggerx

Constructors

Logger(String name)
Logger constructor with unique name

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
Logger unique name
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

debug(Object message) → void
Log debug message
error(Object message, [Object? error, StackTrace? stackTrace]) → void
Log error message with ability to attach error and stackTrace objects
info(Object message) → void
Log info message
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
verbose(Object message) → void
Log verbose message
warning(Object message) → void
Log warning message

Operators

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

Static Methods

find(String name) Logger?
Find logger by name. This is allias for logging.findLogger
findOrCreate(String tag) Logger
Find logger by name or creates new one