cs-codex-dist-tests/Logging/LogConfig.cs

15 lines
306 B
C#
Raw Normal View History

2023-04-12 11:53:55 +00:00
namespace Logging
{
public class LogConfig
{
2023-04-25 09:31:15 +00:00
public LogConfig(string logRoot, bool debugEnabled)
2023-04-12 14:06:04 +00:00
{
LogRoot = logRoot;
2023-04-25 09:31:15 +00:00
DebugEnabled = debugEnabled;
2023-04-12 14:06:04 +00:00
}
public string LogRoot { get; }
2023-04-25 09:31:15 +00:00
public bool DebugEnabled { get; }
}
}