Index: mojo/system/raw_channel_posix.cc |
diff --git a/mojo/system/raw_channel_posix.cc b/mojo/system/raw_channel_posix.cc |
index a08e4e70381710482afe0088c1edbd3aef9928ef..f619a015827af1cbc513ba2e6315b7cd0f78f042 100644 |
--- a/mojo/system/raw_channel_posix.cc |
+++ b/mojo/system/raw_channel_posix.cc |
@@ -206,7 +206,7 @@ RawChannel::IOResult RawChannelPosix::Read(size_t* bytes_read) { |
// |read_result == 0| means "end of file". |
if (read_result == 0 || (errno != EAGAIN && errno != EWOULDBLOCK)) { |
- PLOG_IF(WARNING, read_result != 0) << "recvmsg"; |
+ DVLOG_IF(1, read_result != 0) << "recvmsg"; |
// Make sure that |OnFileCanReadWithoutBlocking()| won't be called again. |
read_watcher_.reset(); |