aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/reporting/StoreReporter.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-01-04 22:33:14 +0100
committerMartin Odersky <odersky@gmail.com>2014-01-04 22:33:14 +0100
commit0aa4d2ce10dcf872c16ed4a5ecb7cd6a2b8c9b30 (patch)
tree9d7c06876b8c7d697d2f40645306b13a4c97c771 /src/dotty/tools/dotc/reporting/StoreReporter.scala
parentb85d7e2cbd1f4df217db544a467607a73e05eddc (diff)
downloaddotty-0aa4d2ce10dcf872c16ed4a5ecb7cd6a2b8c9b30.tar.gz
dotty-0aa4d2ce10dcf872c16ed4a5ecb7cd6a2b8c9b30.tar.bz2
dotty-0aa4d2ce10dcf872c16ed4a5ecb7cd6a2b8c9b30.zip
Output cleanups
Diffstat (limited to 'src/dotty/tools/dotc/reporting/StoreReporter.scala')
-rw-r--r--src/dotty/tools/dotc/reporting/StoreReporter.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/reporting/StoreReporter.scala b/src/dotty/tools/dotc/reporting/StoreReporter.scala
index 67c71df15..a15000c2b 100644
--- a/src/dotty/tools/dotc/reporting/StoreReporter.scala
+++ b/src/dotty/tools/dotc/reporting/StoreReporter.scala
@@ -5,6 +5,7 @@ package reporting
import core.Contexts.Context
import collection.mutable
import Reporter.Diagnostic
+import config.Printers._
/**
* This class implements a Reporter that stores all messages
@@ -14,7 +15,7 @@ class StoreReporter extends Reporter {
val infos = new mutable.ListBuffer[Diagnostic]
protected def doReport(d: Diagnostic)(implicit ctx: Context): Unit = {
- println(s">>>> StoredError: ${d.msg}") // !!! DEBUG
+ typr.println(s">>>> StoredError: ${d.msg}") // !!! DEBUG
infos += d
}