v0.4.0 #4

Merged
alexander merged 5 commits from dev into master 2023-06-07 10:56:06 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit a1bcdf5b0b - Show all commits

View File

@ -99,10 +99,10 @@ version(Windows) {
]; ];
void writestdout(string time, string message, int level) { void writestdout(string time, string message, int level) {
writeln("%s %s".format(time, writeln(
this._ccolor ? "%s %s".format(
this._color[level].format(this._type[level], message) : time,
"%s %s".format(this._type[level], message) (this._ccolor ? this._color[level] : "%s %s").format(this._type[level], message)
) )
); );
} }