From ff10acc860a7f1c77cf0fe4d1a142b868e0619e4 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Tue, 9 Oct 2012 12:56:51 +0200 Subject: device: remove transaction ID related traces, not useful any more --- libqmi-glib/qmi-device.c | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/libqmi-glib/qmi-device.c b/libqmi-glib/qmi-device.c index 811a54d..43401bc 100644 --- a/libqmi-glib/qmi-device.c +++ b/libqmi-glib/qmi-device.c @@ -154,28 +154,6 @@ build_transaction_key (QmiMessage *message) /* We're putting a 32 bit value into a gpointer */ key = GUINT_TO_POINTER ((((service << 8) | client_id) << 16) | transaction_id); -#ifdef MESSAGE_ENABLE_TRACE - { - gchar *hex; - - hex = qmi_utils_str_hex (&key, sizeof (key), ':'); - g_debug ("KEY: %s", hex); - g_free (hex); - - hex = qmi_utils_str_hex (&service, sizeof (service), ':'); - g_debug (" Service: %s", hex); - g_free (hex); - - hex = qmi_utils_str_hex (&client_id, sizeof (client_id), ':'); - g_debug (" Client ID: %s", hex); - g_free (hex); - - hex = qmi_utils_str_hex (&transaction_id, sizeof (transaction_id), ':'); - g_debug (" Transaction ID: %s", hex); - g_free (hex); - } -#endif /* MESSAGE_ENABLE_TRACE */ - return key; } -- cgit v1.2.3