From 23c947d38d89091fc4173034a0fa00bfe7c36e78 Mon Sep 17 00:00:00 2001 From: Matt Dziuban Date: Sun, 22 Sep 2024 22:20:12 -0400 Subject: [PATCH] Use `echo` instead of `inform` -- the latter only appears when `-verbose` is set. --- acyclic/src-3/acyclic/plugin/PluginPhase.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acyclic/src-3/acyclic/plugin/PluginPhase.scala b/acyclic/src-3/acyclic/plugin/PluginPhase.scala index 13de5e8..8c59d22 100644 --- a/acyclic/src-3/acyclic/plugin/PluginPhase.scala +++ b/acyclic/src-3/acyclic/plugin/PluginPhase.scala @@ -28,7 +28,7 @@ class PluginPhase( def reportError(msg: String): Unit = report.error(msg) def reportWarning(msg: String): Unit = report.warning(msg) - def reportInform(msg: String): Unit = report.inform(msg) + def reportInform(msg: String): Unit = report.echo(msg) def reportEcho(msg: String, tree: tpd.Tree): Unit = report.echo(msg, tree.srcPos) private val pkgNameAccumulator = new tpd.TreeAccumulator[List[String]] {