lazy_log 2.0.0
lazy_log: ^2.0.0 copied to clipboard
Simple [log] with global [enableLog] to turn on and off and [forced] to override individually.
example/lazy_log_example.dart
import 'package:lazy_log/lazy_log.dart' as lazy;
main() {
lazy.logEnable = false;
/// Override with [force]
lazy.log('This is a test', forced: true);
}