2010-10-24 00:46:58 -07:00
|
|
|
using System.Diagnostics;
|
|
|
|
using System.IO;
|
2011-04-09 19:44:01 -07:00
|
|
|
using Ninject;
|
2010-10-24 00:46:58 -07:00
|
|
|
using NLog;
|
|
|
|
using NLog.Config;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
|
|
{
|
|
|
|
public static class LogConfiguration
|
|
|
|
{
|
|
|
|
public static void Setup()
|
|
|
|
{
|
|
|
|
if (Debugger.IsAttached)
|
|
|
|
{
|
|
|
|
LogManager.ThrowExceptions = true;
|
|
|
|
}
|
|
|
|
|
2011-04-09 19:44:01 -07:00
|
|
|
LogManager.Configuration = new XmlLoggingConfiguration(Path.Combine(CentralDispatch.AppPath, "log.config"),
|
|
|
|
false);
|
2011-06-12 20:45:22 -07:00
|
|
|
|
|
|
|
LogManager.ConfigurationReloaded += ((s, e) => StartDbLogging());
|
2010-10-24 00:46:58 -07:00
|
|
|
}
|
|
|
|
|
2011-06-12 20:45:22 -07:00
|
|
|
public static void StartDbLogging()
|
2010-10-24 00:46:58 -07:00
|
|
|
{
|
2011-06-12 20:45:22 -07:00
|
|
|
|
2010-10-29 20:46:32 -06:00
|
|
|
#if Release
|
2010-10-24 00:46:58 -07:00
|
|
|
var exTarget = new ExceptioneerTarget();
|
|
|
|
LogManager.Configuration.AddTarget("Exceptioneer", exTarget);
|
|
|
|
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", NLog.LogLevel.Error, exTarget));
|
2010-10-29 20:46:32 -06:00
|
|
|
#endif
|
2010-10-24 00:46:58 -07:00
|
|
|
var sonicTarget = CentralDispatch.NinjectKernel.Get<SubsonicTarget>();
|
|
|
|
LogManager.Configuration.AddTarget("DbLogger", sonicTarget);
|
2011-06-21 22:43:45 -07:00
|
|
|
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Debug, sonicTarget));
|
2010-10-24 00:46:58 -07:00
|
|
|
|
|
|
|
LogManager.Configuration.Reload();
|
|
|
|
}
|
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|