Add extra logging

This commit is contained in:
flightlevel 2018-07-10 22:22:02 +10:00
parent fd1073d0b5
commit 6e7d983fc3
3 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,8 @@ namespace Jackett.Server
//Kicks off the update checker
ServerService.Start();
Logger.Debug("Helper initialization complete");
}
public static void RestartWebHost()

View File

@ -129,6 +129,7 @@ namespace Jackett.Server
try
{
logger.Debug("Creating web host...");
CreateWebHostBuilder(args, url).Build().Run();
}
catch (Exception ex)

View File

@ -89,6 +89,8 @@ namespace Jackett.Server
IContainer container = builder.Build();
Helper.ApplicationContainer = container;
Helper.Logger.Debug("Autofac container built");
Helper.Initialize();
return new AutofacServiceProvider(container);