This is an automated email from the ASF dual-hosted git repository.

btellier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit a296e2601b386e8b51803a1dfe2ebca0ccef0517
Author: Benoit TELLIER <btell...@linagora.com>
AuthorDate: Wed Nov 6 13:15:01 2024 +0100

    [FIX] Report ImapChannelUpstreamHandler uncaught errors as ERROR
    
    Or it is too easy to miss critical stuff...
---
 .../org/apache/james/imapserver/netty/ImapChannelUpstreamHandler.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/protocols/protocols-imap4/src/main/java/org/apache/james/imapserver/netty/ImapChannelUpstreamHandler.java
 
b/server/protocols/protocols-imap4/src/main/java/org/apache/james/imapserver/netty/ImapChannelUpstreamHandler.java
index 938938cee2..e639784794 100644
--- 
a/server/protocols/protocols-imap4/src/main/java/org/apache/james/imapserver/netty/ImapChannelUpstreamHandler.java
+++ 
b/server/protocols/protocols-imap4/src/main/java/org/apache/james/imapserver/netty/ImapChannelUpstreamHandler.java
@@ -300,7 +300,7 @@ public class ImapChannelUpstreamHandler extends 
ChannelInboundHandlerAdapter imp
             } else if (isNotSslRecordException(cause)) {
                 LOGGER.info("Not an SSL record {}", cause.getMessage());
             } else if (!(cause instanceof ClosedChannelException)) {
-                LOGGER.warn("Error while processing imap request", cause);
+                LOGGER.error("Error while processing imap request", cause);
             }
 
             if (cause instanceof TooLongFrameException) {


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org
For additional commands, e-mail: notifications-h...@james.apache.org

Reply via email to