summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-24 21:35:27 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-06-24 21:35:27 +0000
commit6aada9b1ba77d492adb98e93c1f9d2d8c8488ec7 (patch)
tree0bc02f381530f95a7d574e159e9f6afcfc5d29c0 /ffserver.c
parentafb40e7277573822d3a8262b2717367e20b0252f (diff)
Use http_log() rather than printing on stdout to show the launched
commandlines. Originally committed as revision 13954 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ffserver.c b/ffserver.c
index 742ec6042c..923870e2f4 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -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++)