From f66c0e956178433b4fec095c690a7a5a4819f9d6 Mon Sep 17 00:00:00 2001 From: Reynold Xin Date: Sun, 7 Oct 2012 01:53:24 -0700 Subject: [PATCH] Changed the println to logInfo in Utils.fetchFile. --- core/src/main/scala/spark/Utils.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/spark/Utils.scala b/core/src/main/scala/spark/Utils.scala index a7ef22e81b..567c4b1475 100644 --- a/core/src/main/scala/spark/Utils.scala +++ b/core/src/main/scala/spark/Utils.scala @@ -145,7 +145,7 @@ private object Utils extends Logging { // url is absolute, i.e. it starts with "file:///". Extract the source // file's absolute path from the url. val sourceFile = new File(uri) - println("Symlinking " + sourceFile.getAbsolutePath + " to " + targetFile.getAbsolutePath) + logInfo("Symlinking " + sourceFile.getAbsolutePath + " to " + targetFile.getAbsolutePath) FileUtil.symLink(sourceFile.getAbsolutePath, targetFile.getAbsolutePath) } else { // url is not absolute, i.e. itself is the path to the source file.