From 75d756ded53f9912dd199ca9f2d1d8fa5865fcfc Mon Sep 17 00:00:00 2001 From: sh123 Date: Mon, 20 Jun 2022 18:58:49 +0300 Subject: [PATCH] Logging update --- loraprs_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loraprs_service.cpp b/loraprs_service.cpp index 935d202..25d0fb7 100644 --- a/loraprs_service.cpp +++ b/loraprs_service.cpp @@ -137,7 +137,7 @@ void Service::setupWifi(const String &wifiName, const String &wifiKey) int retryCnt = 0; while (WiFi.status() != WL_CONNECTED) { delay(CfgConnRetryMs); - LOG_WARN("WIFI retrying", retryCnt); + LOG_INFO("WIFI retrying", retryCnt); if (retryCnt++ >= CfgConnRetryMaxTimes) { LOG_ERROR("WIFI connect failed"); return;