[server/log] Use millisecond precision in realtive time mode
We don't get more precise timings that anyway unless we were to use the performance timers
This commit is contained in:
parent
082eba42ec
commit
0738f8a983
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class Log {
|
||||||
}
|
}
|
||||||
let prefix = (new Date()).toISOString();
|
let prefix = (new Date()).toISOString();
|
||||||
if(this.settings.logging.date_display_mode == "relative") {
|
if(this.settings.logging.date_display_mode == "relative") {
|
||||||
prefix = ((new Date() - this.start_time) / 1000).toFixed(4);
|
prefix = ((new Date() - this.start_time) / 1000).toFixed(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
func(`${this.a.locol}[${prefix}]${this.a.reset}`, ...items);
|
func(`${this.a.locol}[${prefix}]${this.a.reset}`, ...items);
|
||||||
|
|
Loading…
Reference in a new issue