[java-identity-provider] branch master updated: IDP-1319 - Reduce redundant stack traces in log
Scott Cantor
cantor.2 at osu.edu
Fri Jan 4 16:01:23 EST 2019
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=bb707baef95b19a1033d88cb11e80da90f5c397e
The following commit(s) were added to refs/heads/master by this push:
new bb707ba IDP-1319 - Reduce redundant stack traces in log
bb707ba is described below
commit bb707baef95b19a1033d88cb11e80da90f5c397e
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Jan 4 16:01:11 2019 -0500
IDP-1319 - Reduce redundant stack traces in log
https://issues.shibboleth.net/jira/browse/IDP-1319
---
.../net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java b/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java
index e06c62c..739acac 100644
--- a/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java
+++ b/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java
@@ -129,7 +129,7 @@ public class ReloadServiceConfiguration extends AbstractProfileAction {
getHttpServletResponse().setStatus(HttpServletResponse.SC_OK);
getHttpServletResponse().getWriter().println("Configuration reloaded for '" + id + "'");
} catch (final ServiceException e) {
- log.error("{} Error reloading service configuration for '{}'", getLogPrefix(), id, e);
+ log.error("{} Error reloading service configuration for '{}'", getLogPrefix(), id);
try {
getHttpServletResponse().sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e.getMessage());
} catch (final IOException e2) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list