AppLogger class

A concrete implementation of LoggerService utilizing the native Dart developer library.

This class serves as an abstraction layer over the native logging framework, ensuring complete cross-platform, Web, and WASM compatibility without external dependencies.

Implemented types

Constructors

AppLogger()
Creates an AppLogger instance.

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

debug(String message, {Object? error, StackTrace? stackTrace}) → void
Logs a verbose diagnostic debug message.
override
error(String message, {Object? error, StackTrace? stackTrace}) → void
Logs critical runtime failures and high-severity crashes.
override
info(String message) → void
Logs an operational informational message using the internal logger's info status.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
warning(String message) → void
Logs a potential warning anomaly that does not break application operational flow.
override

Operators

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