添加几处日志

This commit is contained in:
SpringHgui 2020-01-03 17:58:09 +08:00
parent 8ebfc2d137
commit 267716ed39
3 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,6 @@ namespace FastTunnel.Client
{
static void Main(string[] args)
{
Console.WriteLine("Client Start!");
var logger = LogManager.GetCurrentClassLogger();
try

View File

@ -111,6 +111,7 @@ namespace FastTunnel.Core.Client
public void Login()
{
_logger.LogDebug("FastTunnel Client Start");
_logger.LogDebug("登录中...");
//连接到的目标IP

View File

@ -33,6 +33,7 @@ namespace FastTunnel.Core.Server
public void Run()
{
_logger.LogDebug("FastTunnel Server Start");
ListenFastTunnelClient();
ListenCustomer();
}