Fixed output message

pull/4/head
Mark McDowall 11 years ago
parent e7052aebe4
commit d0818daeed

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

@ -38,7 +38,7 @@ namespace NzbDrone.Host
}
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)

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

Loading…
Cancel
Save