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) {
writeln("%s %s".format(time,
this._ccolor ?
this._color[level].format(this._type[level], message) :
"%s %s".format(this._type[level], message)
writeln(
"%s %s".format(
time,
(this._ccolor ? this._color[level] : "%s %s").format(this._type[level], message)
)
);
}