updated log message

This commit is contained in:
Francesco Mangiacrapa 2024-07-04 10:50:05 +02:00
parent b5350f5143
commit 890508d33a
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ public class CatalogueCaller {
String dataset = new Item().read(datasetName); String dataset = new Item().read(datasetName);
datasetExists = dataset != null ? true : false; datasetExists = dataset != null ? true : false;
} catch (Exception e) { } catch (Exception e) {
log.warn("Error on reading dataset for name: " + datasetName+". Does not exist?", e); log.warn("Error on reading dataset for name: " + datasetName + ". Does not exist? Exception is: "
+ e.getMessage());
} }
log.info("datasetExists is {}", datasetExists); log.info("datasetExists is {}", datasetExists);