FileLogger

mill.internal.FileLogger
class FileLogger(file: Path, append: Boolean) extends Logger, AutoCloseable

Attributes

Source
FileLogger.scala
Graph
Supertypes
trait AutoCloseable
trait Logger
trait Actions
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def close(): Unit

Attributes

Source
FileLogger.scala
def debug(s: String): Unit

Prints internal debug messages normally not shown to the user; mostly useful when debugging issues

Prints internal debug messages normally not shown to the user; mostly useful when debugging issues

Attributes

Source
FileLogger.scala
def error(s: String): Unit

Prints logging output which represents problems the user should care about

Prints logging output which represents problems the user should care about

Attributes

Source
FileLogger.scala
def info(s: String): Unit

Prints miscellaneous logging output which isn't part of the main output a user is looking for, but useful to provide context on what Mill is doing

Prints miscellaneous logging output which isn't part of the main output a user is looking for, but useful to provide context on what Mill is doing

Attributes

Source
FileLogger.scala
def prompt: Prompt

Global APIs that let the logger access the command line configuration and manipulate the global prompt, e.g. enabling or disabling it

Global APIs that let the logger access the command line configuration and manipulate the global prompt, e.g. enabling or disabling it

Attributes

Source
FileLogger.scala
def ticker(s: String): Unit

Prints short-lived logging output where consecutive lines over-write each other; this shows up in the logger's prompt line in the multi-line prompt when Logger.withPromptLine is running.

Prints short-lived logging output where consecutive lines over-write each other; this shows up in the logger's prompt line in the multi-line prompt when Logger.withPromptLine is running.

Useful for information which is transient and disposable, e.g. progress indicators.

Attributes

Source
FileLogger.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
Source
FileLogger.scala
def warn(s: String): Unit

Prints logging output which represents warnings the user should care about

Prints logging output which represents warnings the user should care about

Attributes

Source
FileLogger.scala

Inherited methods

final def debugEnabled: Boolean

Whether the --debug flag was passed to Mill. Used to turn on additional logging to console and files on disk that you may not want to turn on by default due to verbosity or performance cost.

Whether the --debug flag was passed to Mill. Used to turn on additional logging to console and files on disk that you may not want to turn on by default due to verbosity or performance cost.

Attributes

Inherited from:
Logger
Source
Logger.scala

Deprecated and Inherited methods

def withOutStream(outStream: PrintStream): Logger

Attributes

Deprecated
true
Inherited from:
Logger
Source
Logger.scala

Concrete fields

lazy val fileStream: PrintStream

Attributes

Source
FileLogger.scala

This Logger's versions of stdin, stdout, and stderr. Typically enabled thread-locally while the logger is being used via SystemStreamsUtils.withStreams, such that every println or System.err.println goes through the logger

This Logger's versions of stdin, stdout, and stderr. Typically enabled thread-locally while the logger is being used via SystemStreamsUtils.withStreams, such that every println or System.err.println goes through the logger

Attributes

Source
FileLogger.scala