aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynold Xin <rxin@cs.berkeley.edu>2012-10-07 01:54:18 -0700
committerReynold Xin <rxin@cs.berkeley.edu>2012-10-07 01:54:18 -0700
commit933e4f5123b3d889569f3383352d7ea73c6ac9af (patch)
treeaf566e7a60b9942f1fb9c0989eb7bd47945f0815
parentd72db3d7dc5980847ebb2db8e0298877d045fb53 (diff)
parentf66c0e956178433b4fec095c690a7a5a4819f9d6 (diff)
downloadspark-933e4f5123b3d889569f3383352d7ea73c6ac9af.tar.gz
spark-933e4f5123b3d889569f3383352d7ea73c6ac9af.tar.bz2
spark-933e4f5123b3d889569f3383352d7ea73c6ac9af.zip
Merge pull request #253 from rxin/dev
Changed the println to logInfo in Utils.fetchFile.
-rw-r--r--core/src/main/scala/spark/Utils.scala2
1 files changed, 1 insertions, 1 deletions
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.