From 23e46d2de44a3d49063e852a38b020e7407a78bc Mon Sep 17 00:00:00 2001 From: Paul Nettle Date: Sun, 3 Sep 2017 08:15:12 -0500 Subject: The GGK server names are no longer in Globals.h but are now configured by ggkStart() allowing an application to change them based on configuration rather than compilation. Power-off-disconnect errors hacked out of existence. A few log lines that were set to trace converted to debug log levels to reduce logspam. --- src/DBusMethod.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/DBusMethod.h') diff --git a/src/DBusMethod.h b/src/DBusMethod.h index e63b84b..f081f7b 100644 --- a/src/DBusMethod.h +++ b/src/DBusMethod.h @@ -45,6 +45,7 @@ #include "Globals.h" #include "DBusObjectPath.h" #include "Logger.h" +#include "Server.h" namespace ggk { @@ -104,7 +105,7 @@ struct DBusMethod return; } - Logger::trace(SSTR << "Calling method: [" << path << "]:[" << interfaceName << "]:[" << methodName << "]"); + Logger::info(SSTR << "Calling method: [" << path << "]:[" << interfaceName << "]:[" << methodName << "]"); callback(*static_cast(pOwner), pConnection, methodName, pParameters, pInvocation, pUserData); } -- cgit v1.2.3