summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Typers.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-08-16 15:03:33 -0700
committerPaul Phillips <paulp@improving.org>2012-09-01 20:17:23 -0700
commit455526f52c0d7a98f2b0bef8f29e7fb542bfe600 (patch)
tree2d9f9452064409bff1a20f9c87985b63abd7fe29 /src/compiler/scala/tools/nsc/typechecker/Typers.scala
parent75ee65451e9cc6a2f8dcae2b10202a95d99de686 (diff)
downloadscala-455526f52c0d7a98f2b0bef8f29e7fb542bfe600.tar.gz
scala-455526f52c0d7a98f2b0bef8f29e7fb542bfe600.tar.bz2
scala-455526f52c0d7a98f2b0bef8f29e7fb542bfe600.zip
Large logging cleanup effort.
Quieted down many logging statements which contribute disproportionate noise. Made others emit something more sensible. Spent lots of time on the inliner trying to find a regular format to make the logs more readable. Long way to go here but it'd be so worth it to have readable logs instead of mind-numbing indiscriminate text dumps.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Typers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Typers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Typers.scala b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
index 4eea8461d3..a9c31cfe1f 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -1870,7 +1870,7 @@ trait Typers extends Modes with Adaptations with Tags {
* @param rhs ...
*/
def computeParamAliases(clazz: Symbol, vparamss: List[List[ValDef]], rhs: Tree) {
- log("computing param aliases for "+clazz+":"+clazz.primaryConstructor.tpe+":"+rhs)//debug
+ debuglog(s"computing param aliases for $clazz:${clazz.primaryConstructor.tpe}:$rhs")
def decompose(call: Tree): (Tree, List[Tree]) = call match {
case Apply(fn, args) =>
val (superConstr, args1) = decompose(fn)