Logger Color Package
A simple and efficient logger package for Flutter that prints console messages with color-coded output based on the type of log.
Features
- Log messages with different types:
error
,success
,info
,warning
, anddebugPrint
. - Color-coded output for better log readability in the console.
- Easy to use and integrate into your Flutter projects.
Installation
- Add the latest version of package to your pubspec.yaml (and run
dart pub get
):
dependencies:
logger_box: ^0.0.1
- Import the package and use it in your Flutter App.
import 'package:logger_box/logger_box.dart';
|