# HG changeset patch # User Elliott Sales de Andrade # Date 1252722338 0 # Node ID 5ef119455f0deaebf05051c09028dd9a8b2fedca # Parent 79c14adf96692b725996219a45f5a4feade0c924 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. diff -r 79c14adf9669 -r 5ef119455f0d libpurple/dbus-server.c --- 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);