logRetry static method

void logRetry(
  1. int attempt,
  2. int max,
  3. String url
)

Implementation

static void logRetry(int attempt, int max, String url) {
  if (!_enabled) return;
  debugPrint('$_bold${_yellow}[AutoPilot 🔄 Retry $attempt/$max]$_reset $url');
}