Remove log spam
This commit is contained in:
parent
83d5bcb147
commit
d0b4b64923
1 changed files with 5 additions and 5 deletions
|
|
@ -17,7 +17,7 @@ namespace fc { namespace http {
|
||||||
class websocket_connection
|
class websocket_connection
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~websocket_connection(){ wlog("."); };
|
virtual ~websocket_connection(){}
|
||||||
virtual void send_message( const std::string& message ) = 0;
|
virtual void send_message( const std::string& message ) = 0;
|
||||||
virtual void close( int64_t code, const std::string& reason ){};
|
virtual void close( int64_t code, const std::string& reason ){};
|
||||||
void on_message( const std::string& message ) { _on_message(message); }
|
void on_message( const std::string& message ) { _on_message(message); }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue