From bb3dc0a7de867b3fd3b58d46f7ee69eeb11ccb5d Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 29 Mar 2004 18:07:51 +0000 Subject: [PATCH] logging goes to stdout now --- lib/python/pyutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 1.7.10.4