fixed log
This commit is contained in:
parent
c2ed1583df
commit
db1018a5c8
|
@ -193,8 +193,9 @@ public class UriResolverServices {
|
|||
if(listResourcePath.isEmpty()){
|
||||
log.info("Reference to the List of Resources/Services is empty, creating it...");
|
||||
readResources(applicationClasses);
|
||||
log.info("Hard-Coding the resource/s: "+ConstantsResolver.resourcesHardCoded);
|
||||
listResourcePath.addAll(Arrays.asList(ConstantsResolver.resourcesHardCoded));
|
||||
List<String> listHardCodedResources = Arrays.asList(ConstantsResolver.resourcesHardCoded);
|
||||
log.info("Hard-Coding the resource/s: "+listHardCodedResources);
|
||||
listResourcePath.addAll(listHardCodedResources);
|
||||
}
|
||||
|
||||
return listResourcePath;
|
||||
|
|
Loading…
Reference in New Issue