ConsoleLogger

Undocumented in source.

Constructors

this
this(File stdout, File stderr, bool verbose, size_t poolSize)
Undocumented in source.

Members

Functions

buildFailed
void buildFailed(Duration duration, Exception e)
Undocumented in source. Be warned that the author may not have intended to support it.
buildStarted
void buildStarted()
Undocumented in source. Be warned that the author may not have intended to support it.
buildSucceeded
void buildSucceeded(Duration duration)
Undocumented in source. Be warned that the author may not have intended to support it.
taskFailed
void taskFailed(size_t worker, Task task, Duration duration, Exception e)
Undocumented in source. Be warned that the author may not have intended to support it.
taskOutput
void taskOutput(size_t worker, ubyte[] chunk)
Undocumented in source. Be warned that the author may not have intended to support it.
taskStarted
void taskStarted(size_t worker, Task task)
Undocumented in source. Be warned that the author may not have intended to support it.
taskSucceeded
void taskSucceeded(size_t worker, Task task, Duration duration)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Events

buildStarted
void buildStarted()

Called when a build has started.

buildSucceeded
void buildSucceeded(Duration duration)

Called when a build has completed successfully.

buildFailed
void buildFailed(Duration duration, Exception e)

Called when a build has failed with the exception that was thrown.

taskStarted
void taskStarted(size_t worker, Task task)

Called when a task has started. Returns a new event handler for tasks.

taskSucceeded
void taskSucceeded(size_t worker, Task task, Duration duration)

Called when a task has completed successfully.

taskFailed
void taskFailed(size_t worker, Task task, Duration duration, Exception e)

Called when a task has failed.

taskOutput
void taskOutput(size_t worker, ubyte[] chunk)

Called when a chunk of output is received from the task.

Meta