This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit a3c67666c124c64a37e421ea989e02e08cd32e73 Author: Jiading Guo <zing...@gmail.com> AuthorDate: Sat Apr 9 19:18:13 2022 +0800 [fix](account) use LOG.info instead of LOG.debug (#8911) This complements (#8849) --- fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/PaloAuth.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/PaloAuth.java b/fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/PaloAuth.java index ec072bfdec..309d5b50a6 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/PaloAuth.java +++ b/fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/PaloAuth.java @@ -588,7 +588,7 @@ public class PaloAuth implements Writable { // 2. check if user already exist if (userPrivTable.doesUserExist(userIdent)) { if (ignoreIfExists) { - LOG.debug("user exists, ignored to create user: {}, is replay: {}", userIdent, isReplay); + LOG.info("user exists, ignored to create user: {}, is replay: {}", userIdent, isReplay); return; } throw new DdlException("User " + userIdent + " already exist"); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org