better debug printing

This commit is contained in:
Peter Thorson
2013-01-09 07:06:38 -06:00
parent 0e6e41d1c4
commit 1b83d5e855
2 changed files with 2 additions and 2 deletions

View File

@@ -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() {

View File

@@ -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) {