logDebug static method

void logDebug(
  1. Object? m
)

Implementation

static void logDebug(Object? m) {
  if (debugMode) {
    print('** [DartSpawner] $m');
  }
}