diff --git a/app/src/plasp-app/commands/CommandBeautify.cpp b/app/src/plasp-app/commands/CommandBeautify.cpp index bf98c54..1651b11 100644 --- a/app/src/plasp-app/commands/CommandBeautify.cpp +++ b/app/src/plasp-app/commands/CommandBeautify.cpp @@ -105,7 +105,7 @@ int CommandBeautify::run(int argc, char **argv) auto context = pddl::Context(std::move(tokenizer), logWarning); context.mode = parserOptions.parsingMode; auto description = pddl::parseDescription(context); - logger.outputStream() << description << std::endl; + logger.outputStream() << description; break; } diff --git a/app/src/plasp-app/commands/CommandNormalize.cpp b/app/src/plasp-app/commands/CommandNormalize.cpp index 908bef8..4f149c4 100644 --- a/app/src/plasp-app/commands/CommandNormalize.cpp +++ b/app/src/plasp-app/commands/CommandNormalize.cpp @@ -108,7 +108,7 @@ int CommandNormalize::run(int argc, char **argv) context.mode = parserOptions.parsingMode; auto description = pddl::parseDescription(context); auto normalizedDescription = pddl::normalize(std::move(description)); - logger.outputStream() << normalizedDescription << std::endl; + logger.outputStream() << normalizedDescription; return EXIT_SUCCESS; }