diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 19:53:25 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 19:53:25 +0000 |
commit | 193407235ad86c6209924c9b67ea6184caf071c1 (patch) | |
tree | 95876f93a1a3d9a49cbb1e0e4b6b905cb7047e11 /ipc/ipc_channel_win.cc | |
parent | d2f1196561555198f74591b3994863b727022fc5 (diff) | |
download | chromium_src-193407235ad86c6209924c9b67ea6184caf071c1.zip chromium_src-193407235ad86c6209924c9b67ea6184caf071c1.tar.gz chromium_src-193407235ad86c6209924c9b67ea6184caf071c1.tar.bz2 |
Update log to not claim Connect was always called twice. :)
TEST=Fixes a simple trace.
BUG=none
Review URL: http://codereview.chromium.org/171053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_win.cc')
-rw-r--r-- | ipc/ipc_channel_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc index 9296ea4..b4fc2d0 100644 --- a/ipc/ipc_channel_win.cc +++ b/ipc/ipc_channel_win.cc @@ -170,7 +170,7 @@ bool Channel::ChannelImpl::CreatePipe(const std::string& channel_id, } bool Channel::ChannelImpl::Connect() { - DLOG(WARNING) << "Connect called twice"; + DLOG_IF(WARNING, thread_check_.get()) << "Connect called more than once"; if (!thread_check_.get()) thread_check_.reset(new NonThreadSafe()); |