Skip to content

Commit e5f8697

Browse files
committed
Turn println into log
1 parent 81b5f84 commit e5f8697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotty/tools/dotc/transform/DropEmptyCompanions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class DropEmptyCompanions extends MiniPhaseTransform { thisTransform =>
4040
case TypeDef(_, impl: Template) if tree.symbol.is(SyntheticModule) &&
4141
tree.symbol.companionClass.exists &&
4242
impl.body.forall(_.symbol.isPrimaryConstructor) =>
43-
println(i"removing ${tree.symbol}")
43+
ctx.log(i"removing ${tree.symbol}")
4444
true
4545
case _ =>
4646
false

0 commit comments

Comments
 (0)