Couple of bugfixes

This commit is contained in:
KZ
2015-07-22 23:48:02 +01:00
parent 7f53c52767
commit 72605c64cc
2 changed files with 6 additions and 6 deletions

View File

@@ -115,7 +115,7 @@ namespace Jackett.Services
public void Start()
{
// Start the server
logger.Debug("Starting web server at " + config.GetListenAddresses()[0]);
logger.Info("Starting web server at " + config.GetListenAddresses()[0]);
var startOptions = new StartOptions();
config.GetListenAddresses().ToList().ForEach(u => startOptions.Urls.Add(u));
_server = WebApp.Start<Startup>(startOptions);