Banish Logs, Unleash Code.
The smartest CLI & VS Code toolkit to strip redundant logs from your Dart and Flutter projects before you ship.
// Before
void main() {
print('Debug!');
doWork();
}
// After
void main() {
doWork();
}
Powerful Capabilities
Designed for safety, speed, and cross-platform flexibility.
๐งน
Safe Precision
Only removes the log statement itself. If your log is part of a larger line, your code stays intact.
๐
Multi-line Magic
Detects and removes log statements spanning multiple lines with ease.
๐ฆ
All Log Types
Supports print, debugPrint, log, and logger by default, plus custom names.
๐ป
Hybrid Power
Use the CLI for bulk project cleaning, or the VS Code extension for fine-tuned active editing.
Quick Start
CLI Tool
dart pub global activate log_removal
Then just run log_removal in any directory.
VS Code
Search for "Dart Log Remover" in the Extension Marketplace and install with one click.