]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[mod_imagick] improve log line
authorAnthony Minessale <anthm@signalwire.com>
Fri, 22 May 2020 00:35:27 +0000 (00:35 +0000)
committerAndrey Volk <andywolk@gmail.com>
Sat, 23 Oct 2021 19:00:12 +0000 (22:00 +0300)
src/mod/formats/mod_imagick/mod_imagick.c

index ee702fa2593496dbd3eaee80de87a2b687f21c1c..ce789637cf2b19fcbcad63b2807646d18c01bbae 100644 (file)
@@ -273,9 +273,9 @@ static switch_status_t imagick_file_open(switch_file_handle_t *handle, const cha
        }
 
        if (context->lazy) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Opening File %s, read the first %d page(s)", path, context->lazy);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Opening File %s, read the first %d page(s)\n", path, context->lazy);
        } else {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Opening File %s", path);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Opening File %s\n", path);
        }
 
        return SWITCH_STATUS_SUCCESS;