summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-02-11 09:35:17 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-02-11 17:57:44 +0100
commitde2410b0cd5a4e1e2436b7c330b17f26d972a48c (patch)
treeb91373be7a2c27df886e5e9e6aa55f4e848c18e2 /src
parentdb5919a7d3b18be94e79899c2f7e33c535e15a27 (diff)
downloadscala-de2410b0cd5a4e1e2436b7c330b17f26d972a48c.tar.gz
scala-de2410b0cd5a4e1e2436b7c330b17f26d972a48c.tar.bz2
scala-de2410b0cd5a4e1e2436b7c330b17f26d972a48c.zip
silences t6323a
Tag materialization notices enabled with -Xlog-implicits are now echoes not printlns. Therefore, they go into stderr, not stdout, getting logged by partest and not spamming stdout of partest.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Implicits.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
index d1cf9b1904..c4ae18ba48 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
@@ -1132,7 +1132,7 @@ trait Implicits {
)
// todo. migrate hardcoded materialization in Implicits to corresponding implicit macros
var materializer = atPos(pos.focus)(gen.mkMethodCall(TagMaterializers(tagClass), List(tp), if (prefix != EmptyTree) List(prefix) else List()))
- if (settings.XlogImplicits.value) println("materializing requested %s.%s[%s] using %s".format(pre, tagClass.name, tp, materializer))
+ if (settings.XlogImplicits.value) reporter.echo(pos, "materializing requested %s.%s[%s] using %s".format(pre, tagClass.name, tp, materializer))
if (context.macrosEnabled) success(materializer)
// don't call `failure` here. if macros are disabled, we just fail silently
// otherwise -Xlog-implicits will spam the long with zillions of "macros are disabled"