Closed ahmader closed 7 years ago
Because the .trim() in serverLog() and serverError() the output is trimmed. Thus, using \t at beginning does not work.
So instead of .trim() I used .replace(/\s+$/, '')
.trim()
.replace(/\s+$/, '')
Because the .trim() in serverLog() and serverError() the output is trimmed. Thus, using \t at beginning does not work.
So instead of
.trim()
I used.replace(/\s+$/, '')