sync static method

void sync(
  1. String message, [
  2. String? tag
])

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');
  }
}