Set test log output via environment variable

This commit is contained in:
Qstick 2017-10-29 21:40:10 -04:00
parent 2dddf8cb33
commit 899f12fd0c
4 changed files with 61 additions and 4 deletions

View file

@ -0,0 +1,9 @@
namespace NzbDrone.Test.Common
{
public enum TestLogOutput
{
Console = 0,
File = 1,
None = 2
}
}