Skip to content

Commit 5ee9c9e

Browse files
committed
https://telecominfraproject.atlassian.net/browse/WIFI-12954
Signed-off-by: stephb9959 <stephane.bourque@gmail.com>
1 parent ca3c43d commit 5ee9c9e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/DeviceStatusReceiver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ namespace OpenWifi {
8080
void DeviceStatusReceiver::DeviceStatusReceived(const std::string &Key,
8181
const std::string &Payload) {
8282
std::lock_guard G(Mutex_);
83-
poco_debug(Logger(), fmt::format("Device({}): Connection/Ping message.", Key));
83+
poco_trace(Logger(), fmt::format("Device({}): Connection/Ping message.", Key));
8484
Queue_.enqueueNotification(new DeviceStatusMessage(Key, Payload));
8585
}
8686
} // namespace OpenWifi

src/StateReceiver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace OpenWifi {
6161

6262
void StateReceiver::StateReceived(const std::string &Key, const std::string &Payload) {
6363
std::lock_guard G(Mutex_);
64-
poco_debug(Logger(), fmt::format("Device({}): State message.", Key));
64+
poco_trace(Logger(), fmt::format("Device({}): State message.", Key));
6565
Queue_.enqueueNotification(new StateMessage(Key, Payload));
6666
}
6767

0 commit comments

Comments
 (0)