lumberdash 1.0.0
lumberdash: ^1.0.0 copied to clipboard
Do you need logs? Lumberdash is the answer! With a simple but powerful API, Lumberdash is the easiest way to record logs. And if that is not enough, you can extend its API and create your own custom [...]
example/lib/example.dart
import 'package:lumberdash/lumberdash.dart';
void main() {
putLumberdashToWork(withClient: SimpleClient());
logWarning('Hello Warning');
logFatal('Hello Fatal!');
logMessage('Hello Message!');
logError(Exception('Hello Error'));
}