Fixed output message

pull/46/merge
Mark McDowall 11 years ago
parent e7052aebe4
commit d0818daeed

@ -15,18 +15,15 @@ namespace NzbDrone.Host
private static IContainer _container; private static IContainer _container;
private static readonly Logger Logger = NzbDroneLogger.GetLogger(); private static readonly Logger Logger = NzbDroneLogger.GetLogger();
public static void Start(StartupContext startupContext, IUserAlert userAlert, Action<IContainer> startCallback = null) public static void Start(StartupContext startupContext, IUserAlert userAlert, Action<IContainer> startCallback = null)
{ {
try try
{ {
GlobalExceptionHandlers.Register(); GlobalExceptionHandlers.Register();
IgnoreCertErrorPolicy.Register(); IgnoreCertErrorPolicy.Register();
Logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version); Logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
if (!PlatformValidation.IsValidate(userAlert)) if (!PlatformValidation.IsValidate(userAlert))
{ {
throw new TerminateApplicationException("Missing system requirements"); throw new TerminateApplicationException("Missing system requirements");
@ -92,8 +89,6 @@ namespace NzbDrone.Host
} }
} }
private static ApplicationModes GetApplicationMode(StartupContext startupContext) private static ApplicationModes GetApplicationMode(StartupContext startupContext)
{ {
if (startupContext.Flags.Contains(StartupContext.HELP)) if (startupContext.Flags.Contains(StartupContext.HELP))
@ -119,8 +114,6 @@ namespace NzbDrone.Host
return ApplicationModes.Interactive; return ApplicationModes.Interactive;
} }
private static bool IsInUtilityMode(ApplicationModes applicationMode) private static bool IsInUtilityMode(ApplicationModes applicationMode)
{ {
switch (applicationMode) switch (applicationMode)
@ -137,6 +130,5 @@ namespace NzbDrone.Host
} }
} }
} }
} }
} }

@ -38,7 +38,7 @@ namespace NzbDrone.Host
} }
else else
{ {
_logger.Debug("none-interactive runtime. Won't attempt to open browser."); _logger.Debug("non-interactive runtime. Won't attempt to open browser.");
} }
} }
catch (Exception e) catch (Exception e)

@ -23,7 +23,6 @@ namespace NzbDrone.Host
{ {
_processPriorityCheckTimer = new Timer(EnsurePriority); _processPriorityCheckTimer = new Timer(EnsurePriority);
_processPriorityCheckTimer.Change(TimeSpan.FromSeconds(15), TimeSpan.FromMinutes(30)); _processPriorityCheckTimer.Change(TimeSpan.FromSeconds(15), TimeSpan.FromMinutes(30));
} }
public virtual void EnsurePriority(object sender) public virtual void EnsurePriority(object sender)

Loading…
Cancel
Save