You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2012/05/21 10:03:22 UTC

svn commit: r1340915 - /incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/scheduling/NotificationJob.java

Author: ilgrosso
Date: Mon May 21 08:03:22 2012
New Revision: 1340915

URL: http://svn.apache.org/viewvc?rev=1340915&view=rev
Log:
Some more debug logging for NotificationJob

Modified:
    incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/scheduling/NotificationJob.java

Modified: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/scheduling/NotificationJob.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/scheduling/NotificationJob.java?rev=1340915&r1=1340914&r2=1340915&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/scheduling/NotificationJob.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/scheduling/NotificationJob.java Mon May 21 08:03:22 2012
@@ -216,7 +216,9 @@ public class NotificationJob implements 
         LOG.debug("Waking up...");
 
         for (NotificationTask task : taskDAO.findToExec(NotificationTask.class)) {
+            LOG.debug("Found notification task {} to be executed: starting...", task);
             executeSingle(task);
+            LOG.debug("Notification task {} executed", task);
         }
 
         LOG.debug("Sleeping again...");