summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2007-10-25 14:05:18 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2007-10-25 14:05:18 +0000
commit4c6834afabcef620f1f5aff0c56b8994171d57d2 (patch)
tree08b76a04ac18e746b5c9b56ff8fafa03edd557d7 /common
parent2bb9cae4a1c2fa8398452c5c7032d77853238cd8 (diff)
Comment out introspection debug prints which cause a lot of useless logging
Diffstat (limited to 'common')
-rw-r--r--common/dbus-helper.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/dbus-helper.c b/common/dbus-helper.c
index 1983a8ee..881dd2b5 100644
--- a/common/dbus-helper.c
+++ b/common/dbus-helper.c
@@ -143,8 +143,8 @@ static void generate_introspection_xml(DBusConnection *conn,
g_string_append_printf(gstr, "\t<interface name=\"%s\">\n", iface->name);
for (method = iface->methods; method && method->name; method++) {
- debug("%s: adding method %s.%s",
- path, iface->name, method->name);
+ /* debug("%s: adding method %s.%s",
+ path, iface->name, method->name); */
if (!strlen(method->signature) && !strlen(method->reply))
g_string_append_printf(gstr, "\t\t<method name=\"%s\"/>\n",
method->name);
@@ -158,8 +158,8 @@ static void generate_introspection_xml(DBusConnection *conn,
}
for (signal = iface->signals; signal && signal->name; signal++) {
- debug("%s: adding signal %s.%s",
- path, iface->name, signal->name);
+ /* debug("%s: adding signal %s.%s",
+ path, iface->name, signal->name); */
if (!strlen(signal->signature))
g_string_append_printf(gstr, "\t\t<signal name=\"%s\"/>\n",
signal->name);