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

Unified Diff: trunk/src/mojo/system/raw_channel_posix.cc

Issue 452973002: Revert 288259 "Changed PLOG to VPLOG" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 4 months 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 | « trunk/src/AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/mojo/system/raw_channel_posix.cc
===================================================================
--- trunk/src/mojo/system/raw_channel_posix.cc (revision 288372)
+++ trunk/src/mojo/system/raw_channel_posix.cc (working copy)
@@ -206,7 +206,7 @@
// |read_result == 0| means "end of file".
if (read_result == 0 || (errno != EAGAIN && errno != EWOULDBLOCK)) {
- DVLOG_IF(1, read_result != 0) << "recvmsg";
+ PLOG_IF(WARNING, read_result != 0) << "recvmsg";
// Make sure that |OnFileCanReadWithoutBlocking()| won't be called again.
read_watcher_.reset();
« no previous file with comments | « trunk/src/AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698