Skip to content

Commit

Permalink
Merge pull request crossbario#147 from agrecascino/master
Browse files Browse the repository at this point in the history
Fix verbose logging when using websocket.
  • Loading branch information
Tobias Oberstein authored Dec 29, 2016
2 parents 97bdc26 + 5c6f8ce commit f8a6de2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions autobahn/wamp_websocketpp_websocket_transport.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ namespace autobahn {
m_client.set_close_handler(bind(&wamp_websocketpp_websocket_transport<Config>::on_ws_close, this, _1));
m_client.set_fail_handler(bind(&wamp_websocketpp_websocket_transport<Config>::on_ws_fail, this, _1));
m_client.set_message_handler(bind(&wamp_websocketpp_websocket_transport<Config>::on_ws_message, this, ::_1, ::_2));
if(!debug_enabled) {
m_client.clear_access_channels(websocketpp::log::alevel::all);
}
}

template <class Config>
Expand Down

0 comments on commit f8a6de2

Please sign in to comment.