You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
925 B
28 lines
925 B
13 years ago
|
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 enviromentProvider = new EnviromentProvider();
|
||
|
|
||
|
LogManager.Configuration = new XmlLoggingConfiguration(enviromentProvider.GetNlogConfigPath(), false);
|
||
|
|
||
|
LogConfiguration.RegisterUdpLogger();
|
||
|
LogConfiguration.RegisterExceptioneer();
|
||
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Web.MvcApplication");
|
||
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Core.CentralDispatch");
|
||
|
LogConfiguration.RegisterRollingFileLogger(enviromentProvider.GetLogFileName(), LogLevel.Trace);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|