lumberdash 3.0.0 lumberdash: ^3.0.0 copied to clipboard
Do you need logs? Lumberdash is the answer! Simple and extensible logging API, it allows you to create and consume different that will cover all your logging needs.
import 'package:lumberdash/lumberdash.dart';
void main() {
putLumberdashToWork(withClients: []);
logWarning('Hello Warning');
logFatal('Hello Fatal!');
logMessage('Hello Message!');
logError(Exception('Hello Error'));
}