Fixed log

This commit is contained in:
Francesco Mangiacrapa 2023-03-13 16:32:45 +01:00
parent 7ea6719534
commit 1b0a93d91c
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@
## [v1.0.4] - 2023-03-06
- Fixed the import from joda-time to java.time
- [#24702] Fixed the default-lc-managers dependency
- [#24702] Fixed the default-lc-managers dependency
- Fixed log
## [v1.0.3] - 2023-01-24
- Fixes [#24476](https://support.d4science.org/issues/24476)

View File

@ -236,7 +236,7 @@ public class SDIIndexerPlugin extends SDIAbstractPlugin implements IndexerPlugin
if(requestArguments.containsKey("_toDisplayIds")){
List<String> ids = Serialization.convert(requestArguments.get("_toDisplayIds"),List.class);
log.info("Requested to hide centroids {} ",ids);
log.info("Requested to display centroids {} ",ids);
indexer.updateIsVisible(true,ids);
}