diff options
author | Thomas <> | 2022-11-30 15:54:57 +0100 |
---|---|---|
committer | Thomas <> | 2022-11-30 15:54:57 +0100 |
commit | 650be990a22d2f5288cbab8853d648c28719ade4 (patch) | |
tree | b20f5bd1ebbdaedea00bb32d4ad12997138f2a6d | |
parent | 20f485434680151111cf7cc7eaf33ca3b92221cb (diff) | |
download | EAAF-Components-650be990a22d2f5288cbab8853d648c28719ade4.tar.gz EAAF-Components-650be990a22d2f5288cbab8853d648c28719ade4.tar.bz2 EAAF-Components-650be990a22d2f5288cbab8853d648c28719ade4.zip |
chore(core): switch log-level to INFO because log-level classification will be done by centrial error-handling
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/AbstractAuthenticationManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/AbstractAuthenticationManager.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/AbstractAuthenticationManager.java index 89977308..76bc09e6 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/AbstractAuthenticationManager.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/AbstractAuthenticationManager.java @@ -379,7 +379,7 @@ public abstract class AbstractAuthenticationManager implements IAuthenticationMa final Throwable taskCause = cause.getCause(); if (taskCause != null && taskCause instanceof EaafException) { final EaafException moaTaskCause = (EaafException) taskCause; - log.warn(taskCause.getMessage(), taskCause); + log.info(taskCause.getMessage(), taskCause); throw moaTaskCause; } |