Skip to content

Commit

Permalink
Added to correct logging issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasuki01 committed Dec 4, 2024
1 parent f7d61b3 commit 408ad4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webcfg_multipart.c
Original file line number Diff line number Diff line change
Expand Up @@ -2302,7 +2302,7 @@ void checkValidURL(char **s) {
c++;
if (backoffRetryTime >= maxRetryTime)
{
WebcfgError("BackoffRetryTime reached max value, reseting to initial value and retrying\n");
WebcfgInfo("BackoffRetryTime reached max value, reseting to initial value and retrying\n");

Check warning on line 2305 in src/webcfg_multipart.c

View check run for this annotation

Codecov / codecov/patch

src/webcfg_multipart.c#L2305

Added line #L2305 was not covered by tests
c = 2;
continue;
}
Expand All @@ -2316,7 +2316,7 @@ void checkValidURL(char **s) {
else
{
// If the MAC address is not empty
WebcfgInfo("URL is having valid MAC Address.\n");
WebcfgDebug("URL is having valid MAC Address.\n");
}
}
}
Expand Down

0 comments on commit 408ad4b

Please sign in to comment.