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

Removing more line output in one message to file

This commit is contained in:
2017-10-19 20:52:26 +02:00
parent e950da73f9
commit 7aeb4037da
3 changed files with 3 additions and 3 deletions

View File

@ -124,7 +124,7 @@ export class Logging {
}
private static writeMessageToFile(message: string, error?: boolean) {
Logging.queue.push({ message: message, error: error });
Logging.queue.push({ message: message.replace("\n", ""), error: error });
Logging.checkQueue();
}