You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2019/08/26 11:22:33 UTC

[flink] 03/06: [hotfix][table api] Fix logger arguments in CatalogManager

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

sewen pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git

commit ad6c46eb1321dfc4319d012f1a116ead85f3b25a
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Fri Aug 9 14:42:58 2019 +0800

    [hotfix][table api] Fix logger arguments in CatalogManager
    
    This closes #9401
---
 .../src/main/java/org/apache/flink/table/catalog/CatalogManager.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/CatalogManager.java b/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/CatalogManager.java
index 5933487..aef90cc 100644
--- a/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/CatalogManager.java
+++ b/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/CatalogManager.java
@@ -294,8 +294,8 @@ public class CatalogManager {
 
 			LOG.info(
 				"Set the current default database as [{}] in the current default catalog [{}].",
-				currentCatalogName,
-				currentDatabaseName);
+				currentDatabaseName,
+				currentCatalogName);
 		}
 	}