Bläddra i källkod

spelling, cleaned up message.

Steve Thielemann 3 år sedan
förälder
incheckning
0929239334
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. 3 3
      session.cpp

+ 3 - 3
session.cpp

@@ -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; 
 }
 
 /*