[mod_imagick] improve log line

This commit is contained in:
Anthony Minessale 2020-05-22 00:35:27 +00:00 committed by Andrey Volk
parent 56b3864229
commit bc83d2558a
1 changed files with 2 additions and 2 deletions

View 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;