[fix] Fix the incorrect class name in the getLogger method call of MysqlTable. (#31465)

This commit is contained in:
ytwp
2024-02-28 10:08:30 +08:00
committed by yiguolei
parent 3acfda413b
commit ab00c7012b

View File

@ -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";