From: kramm Date: Mon, 29 Mar 2004 18:07:51 +0000 (+0000) Subject: logging goes to stdout now X-Git-Tag: stable_core_1~34 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=bb3dc0a7de867b3fd3b58d46f7ee69eeb11ccb5d logging goes to stdout now --- diff --git a/lib/python/pyutils.c b/lib/python/pyutils.c index 453b5c4..95c222b 100644 --- a/lib/python/pyutils.c +++ b/lib/python/pyutils.c @@ -36,8 +36,8 @@ void mylog(char*format, ...) buf[l-1] = 0; l--; } - fprintf(stderr, "[SWF] %s\n", buf); - fflush(stderr); + fprintf(stdout, "[SWF] %s\n", buf); + fflush(stdout); } #define PY_NONE Py_BuildValue("s", 0)