summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-10-09 12:56:51 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-10-09 15:23:48 +0200
commitff10acc860a7f1c77cf0fe4d1a142b868e0619e4 (patch)
tree71493ec7593626eafb7a69188e02f2cafaa7f108
parent586aba166aaa9fae91318917c73fd3c30c045def (diff)
device: remove transaction ID related traces, not useful any more
-rw-r--r--libqmi-glib/qmi-device.c22
1 files changed, 0 insertions, 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;
}