瀏覽代碼

Use repr for 2S text.

Steve Thielemann 3 年之前
父節點
當前提交
0857bf3036
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      session.cpp

+ 3 - 2
session.cpp

@@ -545,10 +545,11 @@ void Session::to_server(const std::string &message) {
 
 void Session::to_server(const std::string &message, const std::string &source) {
   auto self(shared_from_this());
+  std::string work = repr(message);
   if (source.empty())
-    BUGZ_LOG(trace) << "2S: " << message;
+    BUGZ_LOG(trace) << "2S: " << work;
   else
-    BUGZ_LOG(trace) << source << " 2S: " << message;
+    BUGZ_LOG(trace) << source << " 2S: " << work;
 
   boost::asio::async_write(
       server_, boost::asio::buffer(message),