flogger 0.0.6
flogger: ^0.0.6 copied to clipboard
Flogger is a simple yet powerful logging library for Dart applications.
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!');
}