summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/transform/Flatten.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-08-25 09:22:47 -0700
committerPaul Phillips <paulp@improving.org>2013-08-25 10:04:50 -0700
commit7d83be218473f08ab560c937318faadce2617d95 (patch)
tree9289bbfccf24689457483da2015cbf5101ae4f91 /src/compiler/scala/tools/nsc/transform/Flatten.scala
parent4412a92d3609d23f7369fc67bf5a67ddedf3511e (diff)
downloadscala-7d83be218473f08ab560c937318faadce2617d95.tar.gz
scala-7d83be218473f08ab560c937318faadce2617d95.tar.bz2
scala-7d83be218473f08ab560c937318faadce2617d95.zip
Logging cleanup.
Reduced the amount of extraneous logging noise at the default logging level. Was brought to my usual crashing halt by the discovery of identical logging statements throughout GenASM and elsewhere. I'm supposing the reason people so grossly underestimate the cost of such duplication is that most of the effects are in things which don't happen, aka "silent evidence". An example of a thing which isn't happening is the remainder of this commit, which exists only in parallel universes.
Diffstat (limited to 'src/compiler/scala/tools/nsc/transform/Flatten.scala')
-rw-r--r--src/compiler/scala/tools/nsc/transform/Flatten.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/Flatten.scala b/src/compiler/scala/tools/nsc/transform/Flatten.scala
index 44d39de205..e31211d321 100644
--- a/src/compiler/scala/tools/nsc/transform/Flatten.scala
+++ b/src/compiler/scala/tools/nsc/transform/Flatten.scala
@@ -24,8 +24,8 @@ abstract class Flatten extends InfoTransform {
val old = (scope lookupUnshadowedEntries sym.name).toList
old foreach (scope unlink _)
scope enter sym
- log(s"lifted ${sym.fullLocationString}" + ( if (old.isEmpty) "" else s" after unlinking $old from scope." ))
- old
+ def old_s = old map (_.sym) mkString ", "
+ debuglog(s"In scope of ${sym.owner}, unlinked $old_s and entered $sym")
}
private def liftClass(sym: Symbol) {