From 5e1972432ea2942a3dd7165a5aeabba44915ca83 Mon Sep 17 00:00:00 2001 From: Benedikt Richter Date: Tue, 22 Aug 2023 15:47:44 +0200 Subject: [PATCH] Fix logging Remove new line symbol from logging. Signed-off-by: Benedikt Richter --- src/ElectronBackend/input/importFromFile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ElectronBackend/input/importFromFile.ts b/src/ElectronBackend/input/importFromFile.ts index 9293f7468..edd2d77fe 100644 --- a/src/ElectronBackend/input/importFromFile.ts +++ b/src/ElectronBackend/input/importFromFile.ts @@ -92,7 +92,7 @@ export async function loadInputAndOutputFromFilePath( parsedInputData = parsingResult.input; parsedOutputData = parsingResult.output; - log.info('... Successfully read .opossum file.\n'); + log.info('... Successfully read .opossum file.'); } else { log.info(`Starting to parse input file ${filePath}`); const parsingResult = await parseInputJsonFile(filePath);