Removing extraneous logs

This commit is contained in:
stephb9959
2022-05-27 15:38:58 -07:00
parent df7c860246
commit 0ceb204a83
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ namespace OpenWifi {
void DeviceStatusReceiver::DeviceStatusReceived(const std::string &Key, const std::string &Payload) {
std::lock_guard G(Mutex_);
Logger().information(fmt::format("Device({}): Connection/Ping message.", Key));
poco_debug(Logger(),fmt::format("Device({}): Connection/Ping message.", Key));
Queue_.enqueueNotification( new DeviceStatusMessage(Key,Payload));
}
}

View File

@@ -74,7 +74,7 @@ namespace OpenWifi {
void HealthReceiver::HealthReceived(const std::string &Key, const std::string &Payload) {
std::lock_guard G(Mutex_);
Logger().information(fmt::format("Device({}): Health message.", Key));
poco_debug(Logger(),fmt::format("Device({}): Health message.", Key));
Queue_.enqueueNotification( new HealthMessage(Key,Payload));
}
}

View File

@@ -58,7 +58,7 @@ namespace OpenWifi {
void StateReceiver::StateReceived( const std::string & Key, const std::string & Payload) {
std::lock_guard G(Mutex_);
Logger().information(fmt::format("Device({}): State message.", Key));
poco_debug(Logger(),fmt::format("Device({}): State message.", Key));
Queue_.enqueueNotification( new StateMessage(Key,Payload));
}