Exemplo n.º 1
0
        public static void PreStart()
        {
            var environmentProvider = new EnvironmentProvider();

            LogManager.Configuration = new XmlLoggingConfiguration(environmentProvider.GetNlogConfigPath(), false);

            LogConfiguration.RegisterUdpLogger();
            LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Web.MvcApplication");
            LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Core.CentralDispatch");
            LogConfiguration.RegisterRollingFileLogger(environmentProvider.GetLogFileName(), LogLevel.Trace);
        }
Exemplo n.º 2
0
        public static void PreStart()
        {
            string logPath = string.Format("C:\\NLog\\{0}\\{1}\\${{shortdate}}-${{logger}}.log", HostingEnvironment.SiteName, new EnvironmentProvider().Version);
            string error   = string.Format("C:\\NLog\\{0}\\{1}\\${{shortdate}}_Error.log", HostingEnvironment.SiteName, new EnvironmentProvider().Version);

            LogConfiguration.RegisterUdpLogger();
            LogConfiguration.RegisterFileLogger(logPath, LogLevel.Trace);
            //LogConfiguration.RegisterFileLogger(error, LogLevel.Warn);
            LogConfiguration.Reload();

            logger.Info("Logger has been configured. (App Start)");
        }
Exemplo n.º 3
0
        private static void InitilizeApp()
        {
            var environmentProvider = _container.Resolve <EnvironmentProvider>();

            ReportingService.RestProvider = _container.Resolve <RestProvider>();

            LogConfiguration.RegisterRollingFileLogger(environmentProvider.GetLogFileName(), LogLevel.Info);
            LogConfiguration.RegisterConsoleLogger(LogLevel.Debug);
            LogConfiguration.RegisterUdpLogger();
            LogConfiguration.Reload();
            Logger.Info("Start-up Path:'{0}'", environmentProvider.ApplicationPath);
        }
Exemplo n.º 4
0
        protected static void InitLogging()
        {
            if (LogManager.Configuration == null || LogManager.Configuration is XmlLoggingConfiguration)
            {
                LogManager.Configuration = new LoggingConfiguration();
                LogConfiguration.RegisterConsoleLogger(LogLevel.Trace);
                LogConfiguration.RegisterUdpLogger();

                RegisterExceptionVerification();
                LogConfiguration.Reload();
            }
        }
Exemplo n.º 5
0
        private static void InitLoggers()
        {
            ReportingService.RestProvider = _container.Resolve <RestProvider>();

            LogConfiguration.RegisterConsoleLogger(LogLevel.Trace);
            LogConfiguration.RegisterUdpLogger();

            var logPath = Path.Combine(new EnvironmentProvider().GetSandboxLogFolder(), DateTime.Now.ToString("yyyy.MM.dd-H-mm") + ".txt");

            LogConfiguration.RegisterFileLogger(logPath, LogLevel.Info);

            LogConfiguration.Reload();
        }