2019-06-25 Fred Gleason <fredg@paravelsystems.com>

* Adjusted to priority of 'operations' system events to use
	LOG_INFO priority.
This commit is contained in:
Fred Gleason
2019-06-25 15:08:12 -04:00
parent 338fd54796
commit ac4d9305bc
23 changed files with 83 additions and 79 deletions

View File

@@ -229,7 +229,7 @@ void MainObject::notificationReceivedData(const QString &msg,
RDNotification *notify=new RDNotification();
if(!notify->read(msg)) {
rda->syslog(LOG_DEBUG,"invalid notification received from %s",
rda->syslog(LOG_INFO,"invalid notification received from %s",
(const char *)addr.toString().toUtf8());
delete notify;
return;
@@ -507,7 +507,7 @@ bool MainObject::DispatchCommand(RipcdConnection *conn)
msg=msg.left(msg.length()-1);
RDNotification *notify=new RDNotification();
if(!notify->read(msg)) {
rda->syslog(LOG_DEBUG,"invalid notification processed");
rda->syslog(LOG_INFO,"invalid notification processed");
delete notify;
return true;
}
@@ -572,7 +572,7 @@ void MainObject::ReadRmlSocket(QUdpSocket *sock,RDMacro::Role role,
}
}
else {
rda->syslog(LOG_DEBUG,
rda->syslog(LOG_INFO,
"rejected rml: \"%s\": on-air flag not active",buffer);
break;
}
@@ -593,7 +593,7 @@ void MainObject::ReadRmlSocket(QUdpSocket *sock,RDMacro::Role role,
}
}
else {
rda->syslog(LOG_DEBUG,"received malformed rml: \"%s\" from %s:%u",
rda->syslog(LOG_INFO,"received malformed rml: \"%s\" from %s:%u",
buffer,
(const char *)sock->peerAddress().toString().toUtf8(),
sock->peerPort());