aboutsummaryrefslogtreecommitdiff
path: root/src/GattCharacteristic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GattCharacteristic.cpp')
-rw-r--r--src/GattCharacteristic.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/GattCharacteristic.cpp b/src/GattCharacteristic.cpp
index 2c43c9e..9bfafd9 100644
--- a/src/GattCharacteristic.cpp
+++ b/src/GattCharacteristic.cpp
@@ -41,6 +41,8 @@
#include "Utils.h"
#include "Logger.h"
+namespace ggk {
+
//
// Standard constructor
//
@@ -170,7 +172,7 @@ bool GattCharacteristic::callOnUpdatedValue(GDBusConnection *pConnection, void *
return false;
}
- Logger::info(SSTR << "Calling OnUpdatedValue function for interface at path '" << getPath() << "'");
+ Logger::trace(SSTR << "Calling OnUpdatedValue function for interface at path '" << getPath() << "'");
return pOnUpdatedValueFunc(*this, pConnection, pUserData);
}
@@ -215,3 +217,5 @@ void GattCharacteristic::sendChangeNotificationVariant(GDBusConnection *pBusConn
GVariant *pSasv = g_variant_new("(sa{sv})", "org.bluez.GattCharacteristic1", &builder);
owner.emitSignal(pBusConnection, "org.freedesktop.DBus.Properties", "PropertiesChanged", pSasv);
}
+
+}; // namespace ggk \ No newline at end of file