convert stray println to debug logging statement

This commit is contained in:
Mark Harrah 2012-04-28 20:11:34 -04:00
parent dfac015eb3
commit 5c8f212cf3
1 changed files with 1 additions and 2 deletions

View File

@ -59,8 +59,7 @@ private final class CachedCompiler0(args: Array[String], initialLog: WeakLog) ex
def run(sources: Array[File], changes: DependencyChanges, callback: AnalysisCallback, log: Logger, delegate: Reporter): Unit = synchronized
{
println("Running cached compiler " + hashCode.toHexString)
debug(log, "Interfacing (CompilerInterface) with Scala compiler " + scala.tools.nsc.Properties.versionString)
debug(log, "Running cached compiler " + hashCode.toHexString + ", interfacing (CompilerInterface) with Scala compiler " + scala.tools.nsc.Properties.versionString)
val dreporter = DelegatingReporter(settings, delegate)
try { run(sources.toList, changes, callback, log, dreporter) }
finally { dreporter.dropDelegate() }