1
0
mirror of https://git.hibas.dev/OpenServer/NodeLogging.git synced 2025-07-01 12:41:11 +00:00

Adding removal of color codes

This commit is contained in:
hibas123
2018-04-09 19:57:39 +02:00
parent 6a62f1168a
commit e4ea3f660c
4 changed files with 5 additions and 2 deletions

View File

@ -126,6 +126,8 @@ export class Logging {
index = m.indexOf("\x1b");
}
m = m.replace(/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, "");
if (this.logFileLocation) {
if ((!this.fileStream || !this.errorStream) && !this.writing) {
Logging.initializeFile();