disableDebugMode function

Future<bool> disableDebugMode()

🧪 DESATIVAR DEBUG MODE - Reativa throttling para produção

Implementation

Future<bool> disableDebugMode() async {
  print('🧪 [DEBUG] Desativando debug mode...');
  try {
    final result = await StopouBlocker.setDebugMode(false);
    print(
        '🧪 [DEBUG] ${result ? "✅ Debug mode DESATIVADO" : "❌ Falha ao desativar"}');
    if (result) {
      print('🧪 [DEBUG] ✅ Throttling normal reativado - Ideal para produção');
      print('🧪 [DEBUG] 📋 Keywords terão cooldown de 5 segundos');
    }
    return result;
  } catch (e) {
    print('🧪 [DEBUG] ❌ Erro: $e');
    return false;
  }
}