summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas <>2022-11-30 15:54:57 +0100
committerThomas <>2022-11-30 15:54:57 +0100
commit650be990a22d2f5288cbab8853d648c28719ade4 (patch)
treeb20f5bd1ebbdaedea00bb32d4ad12997138f2a6d
parent20f485434680151111cf7cc7eaf33ca3b92221cb (diff)
downloadEAAF-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.java2
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;
}