diff --git a/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java b/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java index 65cdf57510281d0e693eb684faafe5baa2de10c6..30f2d063756ef951a445e7e898b155c60a4e81f5 100644 --- a/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java +++ b/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java @@ -165,7 +165,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler { log.info("SLUBStoragePlugin.checkFixity() oldvalue=" + oldValue); } catch (Exception e) { - log.warn("SLUBStoragePlugin failed to get previous fixity value for file " + file.getPath(), e.getMessage()); + log.warn("SLUBStoragePlugin failed to get previous fixity value ", e.getMessage()); } fixity.setValue(getChecksumUsingPlugin(isRelativePath ? getLocalFilePath(storedEntityIdentifier) : storedEntityIdentifier, fixity.getPluginName(), oldValue)); fixity.setResult((oldValue == null) || (oldValue.equals(fixity.getValue())));