diff --git a/websocketpp/transport/asio/endpoint.hpp b/websocketpp/transport/asio/endpoint.hpp index 8f2fe8c992..536518ed91 100644 --- a/websocketpp/transport/asio/endpoint.hpp +++ b/websocketpp/transport/asio/endpoint.hpp @@ -78,7 +78,7 @@ public: : m_external_io_service(false) , m_state(UNINITIALIZED) { - std::cout << "asio transport constructor" << std::endl; + std::cout << "transport::asio::endpoint constructor" << std::endl; } ~endpoint() { diff --git a/websocketpp/transport/iostream/endpoint.hpp b/websocketpp/transport/iostream/endpoint.hpp index f3cbb77c5b..3ad92933de 100644 --- a/websocketpp/transport/iostream/endpoint.hpp +++ b/websocketpp/transport/iostream/endpoint.hpp @@ -56,7 +56,7 @@ public: // generate and manage our own io_service explicit endpoint() { - std::cout << "iostream transport constructor" << std::endl; + std::cout << "transport::iostream::endpoint constructor" << std::endl; } void register_ostream(std::ostream* o) {