Sonarr/NzbDrone.Web/App_Start/Logging.cs

28 lines
923 B
C#
Raw Normal View History

2012-01-23 02:24:16 +00:00
using System.IO;
using System.Linq;
using NLog;
using NLog.Config;
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()
{
var environmentProvider = new EnvironmentProvider();
2012-01-23 02:24:16 +00:00
LogManager.Configuration = new XmlLoggingConfiguration(environmentProvider.GetNlogConfigPath(), false);
2012-01-23 02:24:16 +00:00
LogConfiguration.RegisterUdpLogger();
LogConfiguration.RegisterRemote();
2012-01-23 02:24:16 +00:00
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Web.MvcApplication");
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Core.CentralDispatch");
LogConfiguration.RegisterRollingFileLogger(environmentProvider.GetLogFileName(), LogLevel.Trace);
2012-01-23 02:24:16 +00:00
}
}
}