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

[flink] branch master updated: [FLINK-13823][table-planner-blink] Fix incorrect debug log in CompileUtils

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9d03fbd  [FLINK-13823][table-planner-blink] Fix incorrect debug log in CompileUtils
9d03fbd is described below

commit 9d03fbdf7524af6de0e0e99386fff1c1f135d3bf
Author: jrthe42 <jr...@gmail.com>
AuthorDate: Fri Aug 23 15:41:16 2019 +0800

    [FLINK-13823][table-planner-blink] Fix incorrect debug log in CompileUtils
    
    This closes #9518
---
 .../java/org/apache/flink/table/runtime/generated/CompileUtils.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/runtime/generated/CompileUtils.java b/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/runtime/generated/CompileUtils.java
index 8de3965..2b7e49f 100644
--- a/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/runtime/generated/CompileUtils.java
+++ b/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/runtime/generated/CompileUtils.java
@@ -71,7 +71,7 @@ public final class CompileUtils {
 
 	private static <T> Class<T> doCompile(ClassLoader cl, String name, String code) {
 		checkNotNull(cl, "Classloader must not be null.");
-		CODE_LOG.debug("Compiling: %s \n\n Code:\n%s", name, code);
+		CODE_LOG.debug("Compiling: {} \n\n Code:\n{}", name, code);
 		SimpleCompiler compiler = new SimpleCompiler();
 		compiler.setParentClassLoader(cl);
 		try {