This is an automated email from the ASF dual-hosted git repository.
jark pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.9 by this push:
new 6b8ff87 [FLINK-13823][table-planner-blink] Fix incorrect debug log in
CompileUtils
6b8ff87 is described below
commit 6b8ff87fef10030dc6c2d0b6db3b1da3789c83a9
Author: jrthe42 <[email protected]>
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 {