You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/07/03 13:21:54 UTC

[flink] branch master updated: [hotfix][43w5] Fix logging argument

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

chesnay 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 7cfdcd5  [hotfix][43w5] Fix logging argument
7cfdcd5 is described below

commit 7cfdcd50ed2a43679d794494cf2594727b76bcbb
Author: leesf <49...@qq.com>
AuthorDate: Wed Jul 3 21:21:40 2019 +0800

    [hotfix][43w5] Fix logging argument
---
 .../src/main/java/org/apache/flink/runtime/rest/RestServerEndpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/rest/RestServerEndpoint.java b/flink-runtime/src/main/java/org/apache/flink/runtime/rest/RestServerEndpoint.java
index 486fcff..d94e367 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/rest/RestServerEndpoint.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/rest/RestServerEndpoint.java
@@ -451,7 +451,7 @@ public abstract class RestServerEndpoint implements AutoCloseableAsync {
 	static void createUploadDir(final Path uploadDir, final Logger log, final boolean initialCreation) throws IOException {
 		if (!Files.exists(uploadDir)) {
 			if (initialCreation) {
-				log.info("Upload directory {} does not exist. " + uploadDir);
+				log.info("Upload directory {} does not exist. ", uploadDir);
 			} else {
 				log.warn("Upload directory {} has been deleted externally. " +
 					"Previously uploaded files are no longer available.", uploadDir);