Skip to content

Commit 444a6be

Browse files
Update protocols/imap/src/main/java/org/apache/james/imap/processor/AbstractMailboxProcessor.java
Co-authored-by: Benoit TELLIER <[email protected]>
1 parent 3cecdf1 commit 444a6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protocols/imap/src/main/java/org/apache/james/imap/processor/AbstractMailboxProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ protected final Mono<Void> doProcess(R acceptableMessage, Responder responder, I
103103
})
104104
.onErrorResume(InsufficientRightsException.class, e -> {
105105
no(acceptableMessage, responder, HumanReadableText.UNSUFFICIENT_RIGHTS);
106-
return ReactorUtils.logAsMono(() -> LOGGER.info("Processing failed due to insufficient rights", e));
106+
return ReactorUtils.logAsMono(() -> LOGGER.warn("Processing failed due to insufficient rights", e));
107107
})
108108
.onErrorResume(OverQuotaException.class, e -> {
109109
no(acceptableMessage, responder, HumanReadableText.FAILURE_OVERQUOTA, StatusResponse.ResponseCode.overQuota());

0 commit comments

Comments
 (0)