log static method
Implementation
static void log(String message) {
if (!enabled) return;
final now = DateTime.now().toIso8601String().substring(11, 23);
dev.log('🎧 [$now] $message');
}
static void log(String message) {
if (!enabled) return;
final now = DateTime.now().toIso8601String().substring(11, 23);
dev.log('🎧 [$now] $message');
}