Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
Remove new line symbol from logging.

Signed-off-by: Benedikt Richter <[email protected]>
  • Loading branch information
benedikt-richter committed Aug 22, 2023
1 parent 7fb873b commit 5e19724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ElectronBackend/input/importFromFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5e19724

Please sign in to comment.