|
@@ -122,9 +122,9 @@ void session::on_connect(const boost::system::error_code error) {
|
|
|
} else {
|
|
|
// TODO:
|
|
|
std::string output =
|
|
|
- str(boost::format("Failed to connect : %1% : %2%\n\r") % host % port);
|
|
|
+ str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
|
|
|
to_client(output);
|
|
|
- BOOST_LOG_TRIVIAL(error) << "Failed to connec to " << host << ":" << port;
|
|
|
+ BOOST_LOG_TRIVIAL(error) << "Failed to connect to " << host << ":" << port;
|
|
|
BOOST_LOG_TRIVIAL(warning) << "socket.shutdown()";
|
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
|
}
|
|
@@ -134,7 +134,7 @@ void session::dispatch_line(std::string line) {
|
|
|
// Does this have \n\r still on it? I don't want them.
|
|
|
|
|
|
std::string temp = clean_string(line);
|
|
|
- BOOST_LOG_TRIVIAL(info) << "SL: " << temp; // clean_string(line);
|
|
|
+ BOOST_LOG_TRIVIAL(info) << "SL: " << temp;
|
|
|
}
|
|
|
|
|
|
/*
|