fixed log

This commit is contained in:
Francesco Mangiacrapa 2024-05-02 10:49:52 +02:00
parent c2ed1583df
commit db1018a5c8
1 changed files with 3 additions and 2 deletions

View File

@ -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;