浏览代码

Removes unneeded regex from logging timestamp

main
Eric Amodio 2 年前
父节点
当前提交
54f2893305
共有 1 个文件被更改,包括 2 次插入6 次删除
  1. +2
    -6
      src/logger.ts

+ 2
- 6
src/logger.ts 查看文件

@ -190,7 +190,7 @@ export class Logger {
};
}
static showOutputChannel() {
static showOutputChannel() class="o">: void {
this.output?.show();
}
@ -227,11 +227,7 @@ export class Logger {
}
private static get timestamp(): string {
const now = new Date();
return `[${now
.toISOString()
.replace(/T/, ' ')
.replace(/\..+/, emptyStr)}:${`00${now.getUTCMilliseconds()}`.slice(-3)}]`;
return `[${new Date().toISOString().replace(/T/, ' ').slice(0, -1)}]`;
}
private static toLoggableParams(debugOnly: boolean, params: any[]) {

正在加载...
取消
保存