From d4963adb312cb104bc06dfeaef91a8d610ce7e13 Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Fri, 27 Nov 2015 12:41:42 -0600 Subject: [PATCH] remove new line in output and error logs --- src/lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.c b/src/lib.c index 3b241ee..7a66fd5 100644 --- a/src/lib.c +++ b/src/lib.c @@ -82,12 +82,12 @@ bool exec_task(const gchar* command_line) { LOG(MOD "Error: %s\n", (char*)error->message); } if (standard_error) { - LOG(MOD "STD Error: %s\n", (char*)standard_error); + LOG(MOD "STD Error: %s", (char*)standard_error); } } if (standard_output) { - LOG(MOD "STD output: %s\n", (char*)standard_output); + LOG(MOD "STD output: %s", (char*)standard_output); g_free(standard_output); }