2012-01-23 03:24:16 +01:00
|
|
|
using System.Linq;
|
|
|
|
using NLog;
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
|
|
|
[assembly: WebActivator.PreApplicationStartMethod(typeof(NzbDrone.Web.App_Start.Logging), "PreStart")]
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.App_Start
|
|
|
|
{
|
|
|
|
|
|
|
|
public static class Logging
|
|
|
|
{
|
|
|
|
public static void PreStart()
|
|
|
|
{
|
2012-03-07 03:59:43 +01:00
|
|
|
var environmentProvider = new EnvironmentProvider();
|
2012-01-23 03:24:16 +01:00
|
|
|
|
2013-01-20 02:00:20 +01:00
|
|
|
//LogManager.Configuration = new XmlLoggingConfiguration(environmentProvider.GetNlogConfigPath(), false);
|
2012-01-23 03:24:16 +01:00
|
|
|
|
|
|
|
LogConfiguration.RegisterUdpLogger();
|
2012-02-05 07:34:36 +01:00
|
|
|
LogConfiguration.RegisterRemote();
|
2012-01-23 03:24:16 +01:00
|
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Web.MvcApplication");
|
|
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Core.CentralDispatch");
|
2012-03-07 03:59:43 +01:00
|
|
|
LogConfiguration.RegisterRollingFileLogger(environmentProvider.GetLogFileName(), LogLevel.Trace);
|
2012-01-23 03:24:16 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|