diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-04-23 23:19:12 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-04-23 23:19:12 +0800 |
commit | 65096669137f498e2cffb49fa4de843553f135e7 (patch) | |
tree | 908c65b63eb0b219fd10c7355a71ab5f98cbf780 /calendar/gui | |
parent | 0558724a01ca2b50292cb622263cafffb30b8b38 (diff) | |
download | gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.gz gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.tar.zst gsoc2013-evolution-65096669137f498e2cffb49fa4de843553f135e7.zip |
improve alarm debugging output
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/alarm-notify/alarm.c | 3 |
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); |