删除多余的console

This commit is contained in:
SpringHgui 2020-04-11 14:59:51 +08:00
parent 2d51f449d0
commit cf263e026a
2 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,7 @@
"LocalIp": "127.0.0.1", "LocalIp": "127.0.0.1",
// //
"LocalPort": 880, "LocalPort": 80,
// , 访url http://{SubDomain}.{Domain}:{ProxyPort_HTTP}/ // , 访url http://{SubDomain}.{Domain}:{ProxyPort_HTTP}/
"SubDomain": "test" // test.test.cc "SubDomain": "test" // test.test.cc

View File

@ -114,7 +114,7 @@ namespace FastTunnel.Core.Core
Host = collection[0].Value; Host = collection[0].Value;
} }
_logger.LogDebug(Host); _logger.LogDebug(Host.Replace("\r", ""));
var domain = Host.Split(":")[1].Trim(); var domain = Host.Split(":")[1].Trim();
WebInfo web; WebInfo web;
@ -258,7 +258,6 @@ namespace FastTunnel.Core.Core
handler = _loginHandler; handler = _loginHandler;
break; break;
case MessageType.Heart: // 心跳 case MessageType.Heart: // 心跳
Console.WriteLine("收到心跳");
handler = _heartHandler; handler = _heartHandler;
break; break;
case MessageType.C_SwapMsg: // 交换数据 case MessageType.C_SwapMsg: // 交换数据