Index: src/main/java/it/openutils/deployment/spring/EnvironmentPropertyConfigurer.java
===================================================================
--- src/main/java/it/openutils/deployment/spring/EnvironmentPropertyConfigurer.java	(revision 2715)
+++ src/main/java/it/openutils/deployment/spring/EnvironmentPropertyConfigurer.java	(working copy)
@@ -240,7 +240,7 @@
                 if (propertyUrl != null)
                 {
                     found = true;
-                    log.debug("Loading property file at {}", loc);
+                    log.debug("Loading property file at {} from {}", loc, propertyUrl);
 
                     Resource resource = new UrlResource(propertyUrl);
                     InputStream is = null;
@@ -249,6 +249,7 @@
                     {
                         is = resource.getInputStream();
                         props.load(is);
+                        log.debug("Properties are now {}", props.toString());
                     }
                     catch (IOException e)
                     {
@@ -273,9 +274,9 @@
                     {
                         break;
                     }
+                } else {
+                	log.debug("Property file not found at {}", loc);
                 }
-                log.debug("Property file not found at {}", loc);
-
             }
 
             if (!found)

