You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2008/10/16 12:21:16 UTC

svn commit: r705200 - /incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java

Author: fmeschbe
Date: Thu Oct 16 03:21:14 2008
New Revision: 705200

URL: http://svn.apache.org/viewvc?rev=705200&view=rev
Log:
SLING-698 Add log message if the repository has been started in the activate method

Modified:
    incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java

Modified: incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java?rev=705200&r1=705199&r2=705200&view=diff
==============================================================================
--- incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java (original)
+++ incubator/sling/trunk/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepository.java Thu Oct 16 03:21:14 2008
@@ -622,6 +622,7 @@
         // this component instance
         try {
             startRepository();
+            log(LogService.LOG_INFO, "Repository started successfully"); 
         } catch (Throwable t) {
             log(LogService.LOG_WARNING,
                 "activate: Unexpected problem starting repository", t);