[java-opensaml] branch master updated: Fix incorrect ordering of log params.
Brent Putman
putmanb at georgetown.edu
Mon May 22 13:10:17 EDT 2017
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=cd95de6f45dcb1de25c8fd5bd334886b256fbc05
The following commit(s) were added to refs/heads/master by this push:
new cd95de6 Fix incorrect ordering of log params.
cd95de6 is described below
commit cd95de6f45dcb1de25c8fd5bd334886b256fbc05
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Mon May 22 13:09:13 2017 -0400
Fix incorrect ordering of log params.
---
.../src/main/java/org/opensaml/storage/ReplayCache.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-storage-api/src/main/java/org/opensaml/storage/ReplayCache.java b/opensaml-storage-api/src/main/java/org/opensaml/storage/ReplayCache.java
index 20a23b6..8bc21fc 100644
--- a/opensaml-storage-api/src/main/java/org/opensaml/storage/ReplayCache.java
+++ b/opensaml-storage-api/src/main/java/org/opensaml/storage/ReplayCache.java
@@ -141,7 +141,7 @@ public class ReplayCache extends AbstractIdentifiableInitializableComponent {
return false;
}
} catch (IOException e) {
- log.error("Exception reading/writing to storage service, returning {}", e, strict ? "failure" : "success");
+ log.error("Exception reading/writing to storage service, returning {}", strict ? "failure" : "success", e);
return !strict;
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list