2022-11-14 Fred Gleason <fredg@paravelsystems.com>

* Modified ripcd(8) to suppress logging 'Send Meter Levels' messages.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-11-14 11:16:19 -05:00
parent 15ef582e07
commit c54d080049
2 changed files with 9 additions and 5 deletions

View File

@@ -23661,3 +23661,5 @@
2022-11-11 Fred Gleason <fredg@paravelsystems.com> 2022-11-11 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) that marker modification made * Fixed a regression in rdcatch(1) that marker modification made
via the mouse menu to fail to notify remote instances of changes. via the mouse menu to fail to notify remote instances of changes.
2022-11-14 Fred Gleason <fredg@paravelsystems.com>
* Modified ripcd(8) to suppress logging 'Send Meter Levels' messages.

View File

@@ -654,11 +654,13 @@ bool MainObject::DispatchCommand(RipcdConnection *conn)
BroadcastCommand("ON "+msg+"!",conn->id()); BroadcastCommand("ON "+msg+"!",conn->id());
ripcd_notification_mcaster-> ripcd_notification_mcaster->
send(msg,rda->system()->notificationAddress(),RD_NOTIFICATION_PORT); send(msg,rda->system()->notificationAddress(),RD_NOTIFICATION_PORT);
rda->syslog(LOG_DEBUG,"sent catch event: \"%s\" to %s:%d", if(evt->operation()!=RDCatchEvent::SendMeterLevelsOp) {
msg.toUtf8().constData(), rda->syslog(LOG_DEBUG,"sent catch event: \"%s\" to %s:%d",
rda->system()->notificationAddress(). msg.toUtf8().constData(),
toString().toUtf8().constData(), rda->system()->notificationAddress().
RD_NOTIFICATION_PORT); toString().toUtf8().constData(),
RD_NOTIFICATION_PORT);
}
delete evt; delete evt;
} }
} }