Feature
color_logging
color_observer_logger
✅ Emoji Prefix
✅ Relative Path ModesControl how file paths appear in logs:
⚙️ SettingsCustomize how file paths and emojis are displayed in logs via 🔧 Emoji Map (
|
Key | Description | Default Emoji |
---|---|---|
session |
Files from the currently active project | 🎯 |
sdk |
Files from the Flutter SDK | 🔧 |
pub |
Packages from pub.dev | 📦 |
local |
Locally defined path packages (e.g., ../mypkg ) |
🧩 |
You can override these in your VSCode settings.
🔧 Example Configuration
// settings.json
{
"FlutterLoggerEasyLife.relativePathMode": "workspace",
"FlutterLoggerEasyLife.showEmoji": true,
"FlutterLoggerEasyLife.silent": false,
"FlutterLoggerEasyLife.emojiMap": {
"session": "🎯",
"sdk": "🔧",
"pub": "📦",
"local": "🧩"
}
}