- Updated documentation
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-03 15:21:41 +02:00
parent 9b79e6f154
commit cd99b7af99
1 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/**
* Includes defaults such as the DefaultLogger
* Default logger
*/
module dlog.defaults;
@ -15,6 +15,12 @@ import std.conv : to;
*/
public final class DefaultLogger : Logger
{
/**
* Constructs a new default logger
*
* Params:
* multiArgJoiner = the joiner to use
*/
this(string multiArgJoiner = " ")
{
/* Use the DefaultTransform */