Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Unified Diff: src/shared/ppapi_proxy/utility.cc

Issue 5631003: ppapi_proxy: Make DebugPrintf more usable.... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/ppapi_proxy/plugin_var.cc ('k') | tests/fake_browser_ppapi/fake_core.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
}
« no previous file with comments | « src/shared/ppapi_proxy/plugin_var.cc ('k') | tests/fake_browser_ppapi/fake_core.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698