summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2022-05-25 20:12:05 +0200
committerJens Georg <mail@jensge.org>2022-05-25 20:12:05 +0200
commit28aafb1e26ea5e45a6320e257c5b1f3f36d768a5 (patch)
tree6e4aa33950a770456bf0cf0f036bf52f4a7d2b26
parentdaac73d12a42d819ce0a4f02fd412843fcf0dc50 (diff)
downloadgssdp-28aafb1e26ea5e45a6320e257c5b1f3f36d768a5.tar.gz
client: Clean-up debug output
-rw-r--r--libgssdp/gssdp-client.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgssdp/gssdp-client.c b/libgssdp/gssdp-client.c
index 6a541dd..716084f 100644
--- a/libgssdp/gssdp-client.c
+++ b/libgssdp/gssdp-client.c
@@ -1922,13 +1922,14 @@ init_network_info (GSSDPClient *client, GError **error)
ret = FALSE;
}
- g_debug ("Created SSDP client 0x%p", client);
+ g_debug ("Created SSDP client %p", client);
g_debug (" iface_name : %s", priv->device.iface_name);
g_debug (" host_ip : %s", gssdp_client_get_host_ip (client));
g_debug (" server_id : %s", priv->server_id);
g_debug (" network : %s", priv->device.network);
- g_debug (" host_addr : 0x%p", priv->device.host_addr);
- g_debug (" host_mask : 0x%p", priv->device.host_mask);
+ g_debug (" index : %d", priv->device.index);
+ g_debug (" host_addr : %p", priv->device.host_addr);
+ g_debug (" host_mask : %p", priv->device.host_mask);
return ret;
}