This is an automated email from the ASF dual-hosted git repository.
yongzao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 2304ae75d54 Remove the error log for password validation failure.
(#17509)
2304ae75d54 is described below
commit 2304ae75d54550d1e925e9d6424cebc7d69ca085
Author: wenyanshi-123 <[email protected]>
AuthorDate: Fri Apr 17 21:16:47 2026 +0800
Remove the error log for password validation failure. (#17509)
---
.../org/apache/iotdb/confignode/persistence/auth/AuthorPlanExecutor.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/auth/AuthorPlanExecutor.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/auth/AuthorPlanExecutor.java
index cf537d5c667..745b0e6d095 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/auth/AuthorPlanExecutor.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/auth/AuthorPlanExecutor.java
@@ -89,7 +89,6 @@ public class AuthorPlanExecutor implements
IAuthorPlanExecutor {
result = AuthUtils.generateEmptyPermissionInfoResp();
}
} catch (AuthException e) {
- LOGGER.error("meet error while logging in.", e);
loginMessage = e.getMessage();
tsStatus.setCode(e.getCode().getStatusCode());
tsStatus.setMessage(loginMessage != null ? loginMessage :
"Authentication failed.");