Revert 288259 "Changed PLOG to VPLOG"

This was deliberately NOT done previously, because it indicates a likely
source of future problems.

> Changed PLOG to VPLOG
> 
> Moved recvmsg log to VPLOG
> 
> BUG=377403
> 
> Review URL: https://codereview.chromium.org/414243002

TBR=giji.g@samsung.com

Review URL: https://codereview.chromium.org/452973002

Cr-Commit-Position: refs/heads/master@{#288373}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288373 0039d316-1c4b-4281-b951-d872f2087c98
parent 50ef4b37
...@@ -134,7 +134,6 @@ Gajendra Singh <wxjg68@motorola.com> ...@@ -134,7 +134,6 @@ Gajendra Singh <wxjg68@motorola.com>
Gao Chun <chun.gao@intel.com> Gao Chun <chun.gao@intel.com>
Gao Chun <gaochun.dev@gmail.com> Gao Chun <gaochun.dev@gmail.com>
George Liaskos <geo.liaskos@gmail.com> George Liaskos <geo.liaskos@gmail.com>
Giji Gangadharan <giji.g@samsung.com>
Giuseppe Iuculano <giuseppe@iuculano.it> Giuseppe Iuculano <giuseppe@iuculano.it>
Glenn Adams <glenn@chromium.org> Glenn Adams <glenn@chromium.org>
Gnanasekar Somanathan <gnanasekar.s@samsung.com> Gnanasekar Somanathan <gnanasekar.s@samsung.com>
......
...@@ -206,7 +206,7 @@ RawChannel::IOResult RawChannelPosix::Read(size_t* bytes_read) { ...@@ -206,7 +206,7 @@ RawChannel::IOResult RawChannelPosix::Read(size_t* bytes_read) {
// |read_result == 0| means "end of file". // |read_result == 0| means "end of file".
if (read_result == 0 || (errno != EAGAIN && errno != EWOULDBLOCK)) { 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. // Make sure that |OnFileCanReadWithoutBlocking()| won't be called again.
read_watcher_.reset(); read_watcher_.reset();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment