Browse Source

PathMatchingResourcePatternResolver consistently logs retrieval results

Issue: SPR-13923
pull/958/merge
Juergen Hoeller 10 years ago
parent
commit
449f704650
  1. 5
      spring-core/src/main/java/org/springframework/core/io/support/PathMatchingResourcePatternResolver.java

5
spring-core/src/main/java/org/springframework/core/io/support/PathMatchingResourcePatternResolver.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2015 the original author or authors. * Copyright 2002-2016 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -312,6 +312,9 @@ public class PathMatchingResourcePatternResolver implements ResourcePatternResol
path = path.substring(1); path = path.substring(1);
} }
Set<Resource> result = doFindAllClassPathResources(path); Set<Resource> result = doFindAllClassPathResources(path);
if (logger.isDebugEnabled()) {
logger.debug("Resolved classpath location [" + location + "] to resources " + result);
}
return result.toArray(new Resource[result.size()]); return result.toArray(new Resource[result.size()]);
} }

Loading…
Cancel
Save