This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d906ff  Fixing parameterized logging issue
6d906ff is described below

commit 6d906ff0ecec4ad1702583455243e5193f739c54
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Thu Jun 25 07:57:27 2020 +0100

    Fixing parameterized logging issue
---
 .../src/main/java/org/apache/wss4j/common/cache/EHCacheReplayCache.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/ws-security-common/src/main/java/org/apache/wss4j/common/cache/EHCacheReplayCache.java
 
b/ws-security-common/src/main/java/org/apache/wss4j/common/cache/EHCacheReplayCache.java
index edfcc24..79debbc 100644
--- 
a/ws-security-common/src/main/java/org/apache/wss4j/common/cache/EHCacheReplayCache.java
+++ 
b/ws-security-common/src/main/java/org/apache/wss4j/common/cache/EHCacheReplayCache.java
@@ -101,7 +101,7 @@ public class EHCacheReplayCache implements ReplayCache {
             cacheManager.init();
             cache = cacheManager.getCache(key, String.class, 
EHCacheValue.class);
         } catch (Exception ex) {
-            LOG.error("Error configuring EHCacheReplayCache", ex.getMessage());
+            LOG.error("Error configuring EHCacheReplayCache: {}", 
ex.getMessage());
             throw new 
WSSecurityException(WSSecurityException.ErrorCode.FAILURE, ex, 
"replayCacheError");
         }
     }

Reply via email to