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.
43 lines
1.4 KiB
43 lines
1.4 KiB
using System.IO;
|
|
using Ninject;
|
|
using NLog;
|
|
using NLog.Config;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Providers;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public class LogConfiguration
|
|
{
|
|
private readonly PathProvider _pathProvider;
|
|
private readonly DatabaseTarget _databaseTarget;
|
|
|
|
public LogConfiguration(PathProvider pathProvider, DatabaseTarget databaseTarget)
|
|
{
|
|
_pathProvider = pathProvider;
|
|
_databaseTarget = databaseTarget;
|
|
}
|
|
|
|
public void Setup()
|
|
{
|
|
if (Common.EnviromentProvider.IsProduction)
|
|
{
|
|
LogManager.ThrowExceptions = false;
|
|
}
|
|
|
|
LogManager.Configuration = new XmlLoggingConfiguration(_pathProvider.LogConfigFile, false);
|
|
|
|
Common.LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Web.MvcApplication");
|
|
Common.LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Core.CentralDispatch");
|
|
|
|
LogManager.ConfigurationReloaded += ((s, e) => RegisterDatabaseLogger(_databaseTarget));
|
|
}
|
|
|
|
public static void RegisterDatabaseLogger(DatabaseTarget databaseTarget)
|
|
{
|
|
LogManager.Configuration.AddTarget("DbLogger", databaseTarget);
|
|
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, databaseTarget));
|
|
Common.LogConfiguration.Reload();
|
|
}
|
|
}
|
|
} |