logging goes to stdout now
authorkramm <kramm>
Mon, 29 Mar 2004 18:07:51 +0000 (18:07 +0000)
committerkramm <kramm>
Mon, 29 Mar 2004 18:07:51 +0000 (18:07 +0000)
lib/python/pyutils.c

index 453b5c4..95c222b 100644 (file)
@@ -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)