logs_spotter 0.0.1
logs_spotter: ^0.0.1 copied to clipboard
Open source log engine plugin for Flutter
logs_spotter #
Open source log engine plugin for Flutter
Setup #
Add the following to your "pubspec.yaml" file:
logs_spotter: ^0.0.1
Usage #
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