Remove extra spaces in front of logger tags
This commit is contained in:
parent
a33d69232a
commit
86c1c9993e
|
@ -211,7 +211,7 @@ export class ServerFormatter extends Formatter {
|
|||
name += " ";
|
||||
}
|
||||
this.format += "\u001B[1m";
|
||||
this.format += `\u001B[38;2;${r};${g};${b}m ${name} \u001B[0m`;
|
||||
this.format += `\u001B[38;2;${r};${g};${b}m${name} \u001B[0m`;
|
||||
}
|
||||
|
||||
public push(arg: any, color?: string, weight?: string): void { // tslint:disable-line no-any
|
||||
|
@ -373,7 +373,6 @@ export class Logger {
|
|||
// field2 (type)?: value
|
||||
this._formatter.tag(options.type.toUpperCase(), options.tagColor);
|
||||
if (this.name && this.nameColor) {
|
||||
this._formatter.push(" ");
|
||||
this._formatter.tag(this.name.toUpperCase(), this.nameColor);
|
||||
}
|
||||
this._formatter.push(options.message);
|
||||
|
|
|
@ -122,7 +122,6 @@ export interface Socket {
|
|||
emit(event: "end"): boolean;
|
||||
}
|
||||
|
||||
|
||||
export class ServerSocket extends events.EventEmitter implements Socket {
|
||||
|
||||
public writable: boolean = true;
|
||||
|
@ -214,4 +213,4 @@ export class ServerSocket extends events.EventEmitter implements Socket {
|
|||
public setDefaultEncoding(encoding: string): this {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue