Skip to content

Commit

Permalink
Use echo instead of inform -- the latter only appears when `-verb…
Browse files Browse the repository at this point in the history
…ose` is set.
  • Loading branch information
mrdziuban committed Sep 23, 2024
1 parent c032bc7 commit 23c947d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acyclic/src-3/acyclic/plugin/PluginPhase.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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]] {
Expand Down

0 comments on commit 23c947d

Please sign in to comment.