From e98729c9e5d8e5e13c346374e222527afa906076 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 2 May 2024 13:31:56 +0200 Subject: [PATCH] style(app): Remove newline from memory usage logging This commit modifies the logging of memory and heap usage in the app.ts file. The redundant newline code `\n` at the end of the log message has been removed to enhance readability and neatness of the logs. Signed-off-by: Mathis --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 23ba37b..65591e9 100644 --- a/src/app.ts +++ b/src/app.ts @@ -56,7 +56,7 @@ try { process.memoryUsage().rss / 1_000_000 } Mio\n >> Memory heap usage: ${ process.memoryUsage().heapUsed / 1_000_000 - } Mio\n\n`, + } Mio\n`, ); } catch (error) { logger.error(`Server failed to start: ${error}`);