Skip to content

Commit 1e1e5fa

Browse files
authored
fix: no more crashing on NodeMCU-32S after network connects (#389)
1 parent a66852f commit 1e1e5fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GatewayConnectionManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ bool StartConnectingToLCG()
264264
return false;
265265
}
266266

267-
OS_LOGD(TAG, "Connecting to LCG endpoint { host: '%s', port: %hu, path: '%s' } %s in country %s", response.data.host.c_str(), response.data.port, response.data.path.c_str(), response.data.country.c_str());
267+
OS_LOGD(TAG, "Connecting to LCG endpoint { host: '%s', port: %hu, path: '%s' } in country %s", response.data.host.c_str(), response.data.port, response.data.path.c_str(), response.data.country.c_str());
268268
s_wsClient->connect(response.data.host, response.data.port, response.data.path);
269269

270270
return true;

0 commit comments

Comments
 (0)