mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-03 15:53:31 +00:00
15 lines
306 B
C#
15 lines
306 B
C#
namespace Logging
|
|
{
|
|
public class LogConfig
|
|
{
|
|
public LogConfig(string logRoot, bool debugEnabled)
|
|
{
|
|
LogRoot = logRoot;
|
|
DebugEnabled = debugEnabled;
|
|
}
|
|
|
|
public string LogRoot { get; }
|
|
public bool DebugEnabled { get; }
|
|
}
|
|
}
|