summaryrefslogtreecommitdiff
path: root/openbox/ping.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-01-20 12:36:42 -0500
committerDana Jansens <danakj@orodu.net>2008-01-31 12:54:51 -0500
commita21840cbb7912c25abc1943c08d6980da7537a6c (patch)
tree01a17f59e28b9ee549f2cded2f5a5e2839fdfe53 /openbox/ping.c
parent20b8fcfa33feeade5946bc7f3046705da5d164fe (diff)
make ob_debug use the g_log system, and make openbox log messages to..a log file ! this will help everyone since most people do not run openbox in a terminal..
Diffstat (limited to 'openbox/ping.c')
-rw-r--r--openbox/ping.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/ping.c b/openbox/ping.c
index 8bd333d3..42487ab0 100644
--- a/openbox/ping.c
+++ b/openbox/ping.c
@@ -99,7 +99,7 @@ void ping_got_pong(guint32 id)
ObPingTarget *t;
if ((t = g_hash_table_lookup(ping_ids, &id))) {
- /*ob_debug("-PONG: '%s' (id %u)\n", t->client->title, t->id);*/
+ /*ob_debug("-PONG: '%s' (id %u)", t->client->title, t->id);*/
if (t->waiting > PING_TIMEOUT_WARN) {
/* we had notified that they weren't responding, so now we
need to notify that they are again */
@@ -108,7 +108,7 @@ void ping_got_pong(guint32 id)
t->waiting = 0; /* not waiting for a reply anymore */
}
else
- ob_debug("Got PONG with id %u but not waiting for one\n", id);
+ ob_debug("Got PONG with id %u but not waiting for one", id);
}
static gboolean find_client(gpointer key, gpointer value, gpointer client)
@@ -131,7 +131,7 @@ static void ping_send(ObPingTarget *t)
g_hash_table_insert(ping_ids, &t->id, t);
}
- /*ob_debug("+PING: '%s' (id %u)\n", t->client->title, t->id);*/
+ /*ob_debug("+PING: '%s' (id %u)", t->client->title, t->id);*/
OBT_PROP_MSG_TO(t->client->window, t->client->window, WM_PROTOCOLS,
OBT_PROP_ATOM(NET_WM_PING), t->id, t->client->window, 0, 0,
NoEventMask);