Fix DS loading, add NLog for logging

This commit is contained in:
John Gross
2017-01-03 23:09:09 -08:00
parent a3e29fff4e
commit 15af769d90
25 changed files with 144 additions and 149 deletions

View File

@@ -26,13 +26,12 @@ namespace Torch.Server
{
ServiceBase.Run(service);
}
return;
}
else
{
_server = new TorchServer();
_server.Init();
_server.Start();
}
_server = new TorchServer();
_server.Init();
_server.Start();
}
}
}