Commit 8e9036d9 authored by stefano's avatar stefano

Use http_log() rather than printing on stdout to show the launched

commandlines.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13954 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5f81b711
......@@ -417,11 +417,11 @@ static void start_children(FFStream *feed)
strcpy(slash, "ffmpeg");
if (ffserver_debug) {
fprintf(stdout, "Launch commandline: ");
fprintf(stdout, "%s ", pathname);
http_log("Launch commandline: ");
http_log("%s ", pathname);
for (i = 1; feed->child_argv[i] && feed->child_argv[i][0]; i++)
fprintf(stdout, "%s ", feed->child_argv[i]);
fprintf(stdout, "\n");
http_log("%s ", feed->child_argv[i]);
http_log("\n");
}
for (i = 3; i < 256; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment