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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 1ee8633e5e [fix](account) use LOG.info instead of LOG.debug (#8911)
1ee8633e5e is described below

commit 1ee8633e5ef3d6a4c9911a50e2c2ced76ab19f3a
Author: Jiading Guo <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to