From 4cd54b56d10853870a05661b8a7e11845536a27f Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <andreas.romeyke@slub-dresden.de>
Date: Mon, 3 Jul 2017 11:50:45 +0200
Subject: [PATCH] - fixed wrong log warning

---
 .../dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 65cdf57..30f2d06 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())));
-- 
GitLab