From 8c589f6327a4e98d6ff2bd921c8997613ee47867 Mon Sep 17 00:00:00 2001 From: Stefan Becker Date: Sun, 24 Oct 2010 12:46:16 +0300 Subject: [PATCH] core: print action name to log when it gets executed --- src/core/sipe-schedule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/sipe-schedule.c b/src/core/sipe-schedule.c index 55a416b4..56d205bf 100644 --- a/src/core/sipe-schedule.c +++ b/src/core/sipe-schedule.c @@ -53,7 +53,7 @@ void sipe_core_schedule_execute(gpointer data) struct sipe_schedule *expired = data; struct sipe_core_private *sipe_private = expired->sipe_private; - SIPE_DEBUG_INFO_NOFORMAT("sipe_core_schedule_execute: executing"); + SIPE_DEBUG_INFO("sipe_core_schedule_execute: executing %s", expired->name); sipe_private->timeouts = g_slist_remove(sipe_private->timeouts, expired); SIPE_DEBUG_INFO("sipe_core_schedule_execute timeouts count %d after removal", g_slist_length(sipe_private->timeouts)); -- 2.11.4.GIT