Disable websocketpp logging, it's corrupting the terminal.

This commit is contained in:
Casey Langen 2020-10-07 17:40:06 -07:00
parent a057787c27
commit f936d21479

View File

@ -90,6 +90,10 @@ static inline bool extractRawQueryResult(
}
WebSocketClient::WebSocketClient(Listener* listener) {
#if 1
client.clear_access_channels(websocketpp::log::alevel::all);
#endif
this->listener = listener;
websocketpp::lib::error_code ec;