diff libpurple/dbus-server.c @ 28622:5ef119455f0d

Some people seem to think these messages actually mean something, but not really. And they totally ignore the 'ignore me' message too. Anyway, now that we have the verbose debug flag, I think we can hide these under it.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 12 Sep 2009 02:25:38 +0000
parents 3a0552df3379
children f1437342cc0e
line wrap: on
line diff
--- a/libpurple/dbus-server.c	Fri Sep 11 18:17:03 2009 +0000
+++ b/libpurple/dbus-server.c	Sat Sep 12 02:25:38 2009 +0000
@@ -126,8 +126,10 @@
 	gint id = GPOINTER_TO_INT(g_hash_table_lookup(map_node_id, node));
 	if ((id == 0) && (node != NULL))
 	{
-		purple_debug_warning("dbus",
-				"Need to register an object with the dbus subsystem. (If you are not a developer, please ignore this message.)\n");
+		if (purple_debug_is_verbose())
+			purple_debug_warning("dbus",
+				"Need to register an object with the dbus subsystem."
+				" (If you are not a developer, please ignore this message.)\n");
 		return 0;
 	}
 	return id;
@@ -795,7 +797,11 @@
 	dbus_message_iter_init_append(signal, &iter);
 
 	if (purple_dbus_message_append_purple_values(&iter, num_values, values, vargs))
-		purple_debug_warning("dbus", "The signal \"%s\" caused some dbus error. (If you are not a developer, please ignore this message.)\n", name);
+		if (purple_debug_is_verbose())
+			purple_debug_warning("dbus",
+				"The signal \"%s\" caused some dbus error."
+				" (If you are not a developer, please ignore this message.)\n",
+				name);
 
 	dbus_connection_send(purple_dbus_connection, signal, NULL);