Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 558 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 558 Bytes

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