Commit 38db78ab authored by Mark Reitblatt's avatar Mark Reitblatt Committed by Facebook Github Bot 4

fix typo in log printing in AsyncSSLSocket

Reviewed By: pritamdamania

Differential Revision: D3068807

fb-gh-sync-id: 0b45ab678e2ec5565eb379540576527cf8b1d308
shipit-source-id: 0b45ab678e2ec5565eb379540576527cf8b1d308
parent 32418bf1
...@@ -1141,7 +1141,8 @@ AsyncSSLSocket::handleConnect() noexcept { ...@@ -1141,7 +1141,8 @@ AsyncSSLSocket::handleConnect() noexcept {
// STATE_CONNECTING. // STATE_CONNECTING.
sslState_ = STATE_ESTABLISHED; sslState_ = STATE_ESTABLISHED;
VLOG(3) << "AsyncSSLSocket %p: fd %d successfully connected; " VLOG(3) << "AsyncSSLSocket " << this << ": "
<< "fd " << fd_ << " successfully connected; "
<< "state=" << int(state_) << ", sslState=" << sslState_ << "state=" << int(state_) << ", sslState=" << sslState_
<< ", events=" << eventFlags_; << ", events=" << eventFlags_;
......
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