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

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


The following commit(s) were added to refs/heads/master by this push:
     new a2420dc1c96 [fix] Fix the incorrect class name in the getLogger method 
call of MysqlTable. (#31465)
a2420dc1c96 is described below

commit a2420dc1c96f0c74d1e4ddf4185cd751f8c4d7ac
Author: ytwp <54202482+y...@users.noreply.github.com>
AuthorDate: Wed Feb 28 10:08:30 2024 +0800

    [fix] Fix the incorrect class name in the getLogger method call of 
MysqlTable. (#31465)
---
 fe/fe-core/src/main/java/org/apache/doris/catalog/MysqlTable.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/MysqlTable.java 
b/fe/fe-core/src/main/java/org/apache/doris/catalog/MysqlTable.java
index 15e39adf822..b815dbf3410 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/MysqlTable.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/MysqlTable.java
@@ -38,7 +38,7 @@ import java.util.List;
 import java.util.Map;
 
 public class MysqlTable extends Table {
-    private static final Logger LOG = LogManager.getLogger(OlapTable.class);
+    private static final Logger LOG = LogManager.getLogger(MysqlTable.class);
 
     private static final String ODBC_CATALOG_RESOURCE = 
"odbc_catalog_resource";
     private static final String MYSQL_HOST = "host";


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

Reply via email to