]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.agent/src/main/java/org/argeo/slc/cli/DefaultSlcRuntime.java
Introduce examples modules
[gpl/argeo-slc.git] / org.argeo.slc.agent / src / main / java / org / argeo / slc / cli / DefaultSlcRuntime.java
index 10e988cc262095c9d70e80ef73fcadd339569436..841a823012f96ceed2542a4101e96b220166384f 100644 (file)
@@ -193,12 +193,14 @@ public class DefaultSlcRuntime {
         * defined by {@link #SLC_ROOT_FILE_NAME}.
         */
        protected Resource findSlcRootFile(Resource currDir) {
-               if (log.isDebugEnabled())
-                       log.debug("Look for SLC root file in " + currDir);
+               if (log.isTraceEnabled())
+                       log.trace("Look for SLC root file in " + currDir);
 
                try {
                        Resource slcRootFile = currDir.createRelative(SLC_ROOT_FILE_NAME);
                        if (slcRootFile.exists()) {
+                               if (log.isDebugEnabled())
+                                       log.debug("Found SLC root file: " + slcRootFile);
                                return slcRootFile;
                        } else {
                                String currPath = currDir.getURL().getPath();