src/Pure/System/progress.scala
changeset 72663 e9030100f97d
parent 72599 76550282267f
child 72664 0d3224b3a92c
--- a/src/Pure/System/progress.scala	Thu Nov 19 21:12:35 2020 +0100
+++ b/src/Pure/System/progress.scala	Thu Nov 19 21:23:12 2020 +0100
@@ -32,7 +32,7 @@
 
   def echo_warning(msg: String) { echo(Output.warning_text(msg)) }
   def echo_error_message(msg: String) { echo(Output.error_message_text(msg)) }
-  def echo_document(path: Path) { echo("Document at " + path.absolute) }
+  def echo_document(msg: String) { echo(Output.error_message_text(msg)) }
 
   def timeit[A](message: String = "", enabled: Boolean = true)(e: => A): A =
     Timing.timeit(message, enabled, echo)(e)