flogger 0.0.5
flogger: ^0.0.5 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" , "status": 404});
Flogger.i('Info Hello World!');
}