sync static method
Log sync/timer events (debug level)
Implementation
static void sync(String message, [String? tag]) {
if (_level >= LogLevel.debug) {
final prefix = tag != null ? '[$tag] ' : '';
debugPrint('🔄 SYNC: $prefix$message');
}
}