More logging during updates

This commit is contained in:
Mark McDowall 2013-01-14 13:14:32 -08:00
commit a2e237b926
3 changed files with 5 additions and 4 deletions

View file

@ -32,7 +32,6 @@ namespace NzbDrone.Common
return service != null && service.Status == ServiceControllerStatus.Running;
}
public virtual void Install(string serviceName)
{
Logger.Info("Installing service '{0}'", serviceName);
@ -78,7 +77,6 @@ namespace NzbDrone.Common
Logger.Info("{0} successfully uninstalled", serviceName);
}
public virtual void Run(ServiceBase service)
{
ServiceBase.Run(service);
@ -131,6 +129,7 @@ namespace NzbDrone.Common
if (service == null)
{
Logger.Warn("Unable to start '{0}' no service with that name exists.", serviceName);
return;
}
if (service.Status != ServiceControllerStatus.Paused && service.Status != ServiceControllerStatus.Stopped)