Changed the println to logInfo in Utils.fetchFile.

This commit is contained in:
Reynold Xin 2012-10-07 01:53:24 -07:00
parent d72db3d7dc
commit f66c0e9561

View file

@ -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.