Procházet zdrojové kódy

Removes unneeded regex from logging timestamp

main
Eric Amodio před 2 roky
rodič
revize
54f2893305
1 změnil soubory, kde provedl 2 přidání a 6 odebrání
  1. +2
    -6
      src/logger.ts

+ 2
- 6
src/logger.ts Zobrazit soubor

@ -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[]) {

Načítá se…
Zrušit
Uložit