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