adept_log 1.0.0
adept_log: ^1.0.0 copied to clipboard
SmartLog is a Flutter logging utility that provides colored logs, multiple log levels, JSON-safe logging, tags, and stack trace support.
Changelog #
All notable changes to this project will be documented in this file.
1.0.0 - 2026-02-10 #
Added #
- Initial release of AdeptLog
- Core logging utility for Flutter projects
- Log levels:
- Debug (
AdeptLog.d) - Info (
AdeptLog.i) - Success (
AdeptLog.s) - Error (
AdeptLog.e)
- Debug (
- ANSI color-coded console output
- Automatic caller method detection
- Optional tag support for logs
- Safe handling of
MapandListmessages using JSON encoding - StackTrace support for error logs
Notes #
- This version focuses on simplicity and stability
- Designed as a replacement for
print()during development