achilles 1.0.1+1
achilles: ^1.0.1+1 copied to clipboard
Logger manager wrapper
Achilles #
Owlnext Flutter package to wrap the dev logger features
Features #
Wraps the [logger] package
Getting started #
Initialize the package in the [main.dart] file with
Lgm.initialize();
Usage #
To use it just call
try {
/// your code here
} catch (e, s) {
Lgm.error(e, s);
}
or other methods like
Lgm.l.t("your trace message");