Skip to content

Commit 3c495e4

Browse files
committed
Add back verbose code
1 parent aa0bad1 commit 3c495e4

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Firmware/RTK_Everywhere/WiFi.ino

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3039,15 +3039,25 @@ bool RTK_WIFI::stopStart(WIFI_ACTION_t stopping, WIFI_ACTION_t starting)
30393039
// Display the items that were not started
30403040
//****************************************
30413041

3042-
if (settings.debugWifiState && _verbose)
3042+
if (settings.debugWifiState && _verbose && _verbose)
30433043
{
30443044
systemPrintf("0x%08x: startingNow\r\n", startingNow);
30453045
systemPrintf("0x%08x: _started\r\n", _started);
30463046
}
30473047
startingNow &= ~_started;
3048-
if (settings.debugWifiState && startingNow)
3048+
if (settings.debugWifiState && startingNow)
30493049
displayComponents("ERROR: Items NOT started", startingNow);
30503050

3051+
//****************************************
3052+
// Display the items that were not started
3053+
//****************************************
3054+
3055+
if (settings.debugWifiState && _verbose)
3056+
{
3057+
systemPrintf("0x%08x: startingNow\r\n", startingNow);
3058+
systemPrintf("0x%08x: _started\r\n", _started);
3059+
}
3060+
30513061
// Clear the items that were not started
30523062
_started = _started & ~notStarted;
30533063

0 commit comments

Comments
 (0)