Skip to content

Commit

Permalink
fix: resolve client_impl::ping LOG call syntax in debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianDC authored and darrachequesne committed Feb 8, 2021
1 parent d1c73b7 commit e7de4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/sio_client_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ namespace sio
if(ec || m_con.expired())
{
if (ec != asio::error::operation_aborted)
LOG("ping exit,con is expired?"<<m_con.expired()<<",ec:"<<ec.message()<<endl){};
LOG("ping exit,con is expired?"<<m_con.expired()<<",ec:"<<ec.message()<<endl);
return;
}
packet p(packet::frame_ping);
Expand Down

0 comments on commit e7de4eb

Please sign in to comment.