From 449f704650fa02750a807e7f060515128dc888f3 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 8 Feb 2016 13:18:43 +0100 Subject: [PATCH] PathMatchingResourcePatternResolver consistently logs retrieval results Issue: SPR-13923 --- .../core/io/support/PathMatchingResourcePatternResolver.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spring-core/src/main/java/org/springframework/core/io/support/PathMatchingResourcePatternResolver.java b/spring-core/src/main/java/org/springframework/core/io/support/PathMatchingResourcePatternResolver.java index bdb8d4fec0f..fd4ae470761 100644 --- a/spring-core/src/main/java/org/springframework/core/io/support/PathMatchingResourcePatternResolver.java +++ b/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"); * 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); } Set result = doFindAllClassPathResources(path); + if (logger.isDebugEnabled()) { + logger.debug("Resolved classpath location [" + location + "] to resources " + result); + } return result.toArray(new Resource[result.size()]); }