Console output while using Websocketpp
c++, websocket, websocket++
Solution
websocketpp::server<websocketpp::config::asio> server;
server.clear_access_channels(websocketpp::log::alevel::frame_header | websocketpp::log::alevel::frame_payload);
// this will turn off console output for frame header and payload
server.clear_access_channels(websocketpp::log::alevel::all);
// this will turn off everything in console output
More details can be found here: http://www.zaphoyd.com/websocketpp/manual/reference/logging
Problem
I'm debugging some foreign code, which uses websocketpp. I keep getting quite verbose console output, although everything works fine. Can I disable the output or does it at least point to something specific? BR, Daniel ``` [2014-07-08 14:51:27] [fatal] error in handle_read_handshake: End of File [2014-07-08 14:51:27] [fatal] error in handle_read_frame: End of File (websocketpp.transport:7) [2014-07-08 14:51:27] [info] asio async_shutdown error: system:10054 (An existing connection was forcibly closed by the remote host) [2014-07-08 14:51:27] [error] Underlying Transport Error [2014-07-08 14:51:27] [fatal] error in handle_read_frame: End of File (websocketpp.transport:7) [2014-07-08 14:51:27] [info] asio async_write error: system:10053 (An established connection was aborted by the software in your host machine) [2014-07-08 14:51:27] [fatal] error in handle_write_frame: Underlying TransportError [2014-07-08 14:51:35] [fatal] error in handle_read_frame: End of File (websocketpp.transport:7) [2014-07-08 14:51:35] [info] asio async_shutdown error: system:10054 (An existing connection was forcibly closed by the remote host) [2014-07-08 14:51:35] [error] Underlying Transport Error ```