log_er 2.0.0
log_er: ^2.0.0 copied to clipboard
Log_er - Powerful & Colorful Logging for Flutter
# π log_er - Powerful & Colorful Logging for Flutter
**log_er** is a structured and feature-rich logging package for Flutter applications. It provides colorful and readable log output, making debugging and application monitoring easier than ever! π
## β¨ Features
β
**Multiple Log Levels** β ERROR, DEBUG, WARNING, INFO, SPECIAL, DATA
β
**Color-Coded Console Logs** β Easily differentiate log messages
β
**Boxed Logs for Readability** β Auto-wrapped text with structured format
β
**Stack Trace Support** β Helps track errors efficiently
β
**Performance Optimized** β Minimal overhead, works seamlessly with debug mode
## π¦ Installation
Add the package to your `pubspec.yaml`:
```yaml
dependencies:
log_er: latest_version
Then, import and use it in your Flutter project:
import 'package:log_er/log_er.dart';
void main() {
Log.info("Application Started");
Log.warning("This is a warning message");
Log.error("Something went wrong!", stackTrace: StackTrace.current);
}
π Log Levels & Usage #
Log.error("π₯ Critical Error");
Log.debug("πΊ Debugging Mode Enabled");
Log.warning("π¨ Warning: Low Battery");
Log.info("π΅ App Running Smoothly");
Log.special("π Special Log Event");
Log.data("β
User Data Loaded Successfully");
π― Why Use log_er? #
With its structured logging approach, log_er helps developers track issues efficiently and improve debugging workflows. The colorful log output makes it easier to read and analyze logs, especially when working with large-scale applications.
π Start logging smarter with log_er today!