Skip to content

Commit

Permalink
Changed PLOG to VPLOG
Browse files Browse the repository at this point in the history
Moved recvmsg log to VPLOG

BUG=377403

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

Cr-Commit-Position: refs/heads/master@{#288259}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288259 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
giji.g@samsung.com committed Aug 8, 2014
1 parent c442720 commit d96ab4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ Gajendra Singh <wxjg68@motorola.com>
Gao Chun <chun.gao@intel.com>
Gao Chun <gaochun.dev@gmail.com>
George Liaskos <geo.liaskos@gmail.com>
Giji Gangadharan <giji.g@samsung.com>
Giuseppe Iuculano <giuseppe@iuculano.it>
Glenn Adams <glenn@chromium.org>
Gnanasekar Somanathan <gnanasekar.s@samsung.com>
Expand Down
2 changes: 1 addition & 1 deletion mojo/system/raw_channel_posix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit d96ab4a

Please sign in to comment.