updated log message
This commit is contained in:
parent
b5350f5143
commit
890508d33a
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue