Chromium Code Reviews| Index: src/shared/ppapi_proxy/utility.cc |
| =================================================================== |
| --- src/shared/ppapi_proxy/utility.cc (revision 3872) |
| +++ src/shared/ppapi_proxy/utility.cc (working copy) |
| @@ -22,9 +22,10 @@ |
| if (printf_enabled == 1) { |
| va_list argptr; |
| va_start(argptr, format); |
| - vfprintf(stderr, format, argptr); |
| + fprintf(stdout, "ppapi_proxy: "); |
| + vfprintf(stdout, format, argptr); |
| va_end(argptr); |
| - fflush(stderr); |
| + fflush(stdout); |
| } |
| } |