aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2010-04-23 23:19:12 +0800
committerMichael Meeks <michael.meeks@novell.com>2010-04-23 23:19:12 +0800
commit65096669137f498e2cffb49fa4de843553f135e7 (patch)
tree908c65b63eb0b219fd10c7355a71ab5f98cbf780 /calendar
parent0558724a01ca2b50292cb622263cafffb30b8b38 (diff)
downloadgsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar
gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.gz
gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.bz2
gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.lz
gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.xz
gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.zst
gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.zip
improve alarm debugging output
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/alarm-notify/alarm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/alarm-notify/alarm.c b/calendar/gui/alarm-notify/alarm.c
index 14f66a68fb..a4be16bd69 100644
--- a/calendar/gui/alarm-notify/alarm.c
+++ b/calendar/gui/alarm-notify/alarm.c
@@ -152,7 +152,8 @@ setup_timeout (void)
now = time (NULL);
/* Add the time out */
- d(g_message ("Setting timeout for %d %lu %lu", diff, ar->trigger, now));
+ d(g_message ("Setting timeout for %d.%2d (from now) %lu %lu",
+ diff / 60, diff % 60, ar->trigger, now));
d(g_message (" %s", ctime (&ar->trigger)));
d(g_message (" %s", ctime (&now)));
timeout_id = g_timeout_add_seconds (diff, alarm_ready_cb, NULL);