ilog 0.0.2
ilog: ^0.0.2 copied to clipboard
Tiny Flutter debug logger that prints colorful, emoji-friendly logs to consoles
iLog #
Tiny Flutter debug logger that prints colorful, emoji-friendly logs to consoles that support ANSI escape codes (IDE terminals, Android Studio, VS Code, etc.).
Note: iLog prints only in debug mode. Release builds are intentionally silent.
Features #
- Simple static API (
ILog.info,ILog.error, etc.) - ANSI color support + bold
- Small and dependency-free
- Example included
Usage #
Add the package (local or publish), then:
import 'package:ilog/ilog.dart';
ILog.info('Hello world', icon: ILogIcon.victoryHand);
ILog.error('Something broke');
ILog.custom(title: 'DB', text: 'Query took 123ms', color: ILogColor.green);