[java-opensaml] 15/24: Fix incorrect ordering of log params.
Brent Putman
putmanb at georgetown.edu
Wed Sep 27 16:46:09 EDT 2017
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch maint-3.3
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=50e94b89d617b7b0e2833b295e21ee4d4eab1c4e
commit 50e94b89d617b7b0e2833b295e21ee4d4eab1c4e
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