diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2010-03-26 21:12:43 +0100 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2010-03-27 23:28:00 +0100 |
commit | d5217348517e6b00a04e500ca460daf6cc928cd9 (patch) | |
tree | df2f7b290a0e660dc3bdd30591cb1cdabdd4565a /bus/connection.c | |
parent | 2575b946ffc8549f1ae2f7856beea566ce3d43c6 (diff) | |
download | dbus-d5217348517e6b00a04e500ca460daf6cc928cd9.tar.gz |
Cleaned up _dbus_verbose calls: function names and code line numbers are printed by default.
Diffstat (limited to 'bus/connection.c')
-rw-r--r-- | bus/connection.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bus/connection.c b/bus/connection.c index b2d6aa57..8ccae769 100644 --- a/bus/connection.c +++ b/bus/connection.c @@ -839,7 +839,7 @@ expire_incomplete_timeout (void *data) { BusConnections *connections = data; - _dbus_verbose ("Running %s\n", _DBUS_FUNCTION_NAME); + _dbus_verbose ("Running\n"); /* note that this may remove the timeout */ bus_connections_expire_incomplete (connections); @@ -1632,7 +1632,7 @@ cancel_pending_reply (void *data) { CancelPendingReplyData *d = data; - _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d); + _dbus_verbose ("d = %p\n", d); if (!bus_expire_list_remove (d->connections->pending_replies, &d->pending->expire_item)) @@ -1646,7 +1646,7 @@ cancel_pending_reply_data_free (void *data) { CancelPendingReplyData *d = data; - _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d); + _dbus_verbose ("d = %p\n", d); /* d->pending should be either freed or still * in the list of pending replies (owned by someone @@ -1783,7 +1783,7 @@ cancel_check_pending_reply (void *data) { CheckPendingReplyData *d = data; - _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d); + _dbus_verbose ("d = %p\n",d); bus_expire_list_add_link (d->connections->pending_replies, d->link); @@ -1795,7 +1795,7 @@ check_pending_reply_data_free (void *data) { CheckPendingReplyData *d = data; - _dbus_verbose ("%s: d = %p\n", _DBUS_FUNCTION_NAME, d); + _dbus_verbose ("d = %p\n",d); if (d->link != NULL) { |