From 4c6834afabcef620f1f5aff0c56b8994171d57d2 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 25 Oct 2007 14:05:18 +0000 Subject: Comment out introspection debug prints which cause a lot of useless logging --- common/dbus-helper.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common/dbus-helper.c') 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\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\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\n", signal->name); -- cgit