Fixed output message

This commit is contained in:
Mark McDowall 2013-12-26 13:03:07 -08:00
parent e7052aebe4
commit d0818daeed
3 changed files with 1 additions and 10 deletions

View File

@ -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
}
}
}
}
}

View File

@ -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)

View File

@ -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)