| 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();
|
|
|