core: fix log target failure message.
authorKrisztian Litkey <kli@iki.fi>
Fri, 5 Jul 2013 18:52:57 +0000 (21:52 +0300)
committerKrisztian Litkey <kli@iki.fi>
Fri, 5 Jul 2013 19:02:46 +0000 (22:02 +0300)
src/core/console-log.c

index 24ad0be..9fd5294 100644 (file)
@@ -72,7 +72,7 @@ static void log_target(mrp_console_t *c, void *user_data,
         target = argv[2];
 
         if (!mrp_log_set_target(target))
-            printf("failed to change logging target to %s", target);
+            printf("failed to change logging target to %s\n", target);
         else {
             printf("changed log target to %s\n", target);
             mrp_log_info("changed log target to %s", target);