summaryrefslogtreecommitdiff
path: root/src/components/connection_handler/src/device.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/connection_handler/src/device.cc')
-rw-r--r--src/components/connection_handler/src/device.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/connection_handler/src/device.cc b/src/components/connection_handler/src/device.cc
index 93638bd37..40a048654 100644
--- a/src/components/connection_handler/src/device.cc
+++ b/src/components/connection_handler/src/device.cc
@@ -1,4 +1,4 @@
-/**
+/*
* \file Device.cpp
* \brief Device class implementation.
*
@@ -52,7 +52,9 @@ Device::Device(DeviceHandle device_handle,
user_friendly_name_(user_friendly_name),
mac_address_(mac_address),
connection_type_(connection_type){
+ LOG4CXX_INFO(logger_, "Device MAC address is: " << mac_address_);
mac_address_ = encryption::MakeHash(mac_address);
+ LOG4CXX_INFO(logger_, "Device MAC address hash is: " << mac_address_);
}
DeviceHandle Device::device_handle() const {