mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-04 06:38:28 +02:00
29 lines
801 B
C#
29 lines
801 B
C#
using NLog;
|
|
using NLog.Config;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Test.Common
|
|
{
|
|
public abstract class LoggingFixtures
|
|
{
|
|
|
|
[SetUp]
|
|
public void SetUpBase()
|
|
{
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Trace);
|
|
LogConfiguration.RegisterUdpLogger();
|
|
|
|
RegisterExceptionVerification();
|
|
}
|
|
|
|
private static void RegisterExceptionVerification()
|
|
{
|
|
var exceptionVerification = new ExceptionVerification();
|
|
LogManager.Configuration.AddTarget("ExceptionVerification", exceptionVerification);
|
|
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, exceptionVerification));
|
|
LogConfiguration.Reload();
|
|
}
|
|
}
|
|
}
|