Skip to content
Snippets Groups Projects
Commit bca9510b authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Include current node number intead of socket descriptor in highwater log msg

looks better, more consistent with the log messages before/after it.
parent 59e30dda
Branches
Tags
1 merge request!455Update branch with changes from master
Pipeline #6499 passed
......@@ -5925,8 +5925,8 @@ NO_SSH:
if(client_count > client_highwater) {
client_highwater = client_count;
if(client_highwater > 1)
lprintf(LOG_NOTICE, "%04d New active client highwater mark: %u"
,client_socket, client_highwater);
lprintf(LOG_NOTICE, "Node %d New active client highwater mark: %u"
,node_num, client_highwater);
mqtt_pub_uintval(&mqtt, TOPIC_SERVER, "highwater", client_highwater);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment