src/Pure/General/logger.scala
author wenzelm
Mon, 17 May 2021 14:07:51 +0200
changeset 73715 bf51c23f3f99
parent 73340 0ffcad1f6130
child 73777 52e43a93d51f
permissions -rw-r--r--
clarified signature -- avoid odd warning about scala/bug#6675;

/*  Title:      Pure/General/logger.scala
    Author:     Makarius

Minimal logging support.
*/

package isabelle


object Logger
{
  def make(log_file: Option[Path]): Logger =
    log_file match { case Some(file) => new File_Logger(file) case None => No_Logger }
}

trait Logger
{
  def apply(msg: => String): Unit

  def timeit[A](message: String = "", enabled: Boolean = true)(e: => A): A =
    Timing.timeit(message, enabled, apply(_))(e)
}

object No_Logger extends Logger
{
  def apply(msg: => String): Unit = {}
}

class File_Logger(path: Path) extends Logger
{
  def apply(msg: => String): Unit = synchronized { File.append(path, msg + "\n") }

  override def toString: String = path.toString
}