flogger 0.0.2
flogger: ^0.0.2 copied to clipboard
Flogger is a simple yet powerful logging library for Dart applications. It supports various logging levels, such as debug, info, warning, and error, and provides beautifully formatted console output. [...]
example/main.dart
import 'package:flogger/flogger.dart';
void main(){
Flogger.d('Debug Hello World!');
Flogger.w('Warning Hello World!');
Flogger.e({"error":"msg error"});
Flogger.i('Debug Hello World!');
}