Open source log engine plugin for Flutter
Add the following to your "pubspec.yaml" file:
logs_spotter: ^0.0.1
Call this to configure spotter environment
await Spotter().start();
To log messages
//To log an message
"initState".spot();
//add TAG
"incrementCounter: $_counter".spot(tag: CLICK);
Note
The defaut values for tag property are: CLICK
, ERROR
, WARNING
, DEBUG
,RESPONSE
, REQUEST