DebugLogEnabled = false
This commit is contained in:
parent
0b5ba1a6e7
commit
c7016371a5
@ -5,7 +5,7 @@ namespace DTLib.Logging.New;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class CompositeLogger : ILogger
|
public class CompositeLogger : ILogger
|
||||||
{
|
{
|
||||||
public bool DebugLogEnabled { get; set; } = true;
|
public bool DebugLogEnabled { get; set; } = false;
|
||||||
public bool InfoLogEnabled { get; set; } = true;
|
public bool InfoLogEnabled { get; set; } = true;
|
||||||
public bool WarnLogEnabled { get; set; } = true;
|
public bool WarnLogEnabled { get; set; } = true;
|
||||||
public bool ErrorLogenabled { get; set; } = true;
|
public bool ErrorLogenabled { get; set; } = true;
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
// вывод лога в консоль и файл
|
// вывод лога в консоль и файл
|
||||||
public class ConsoleLogger : ILogger
|
public class ConsoleLogger : ILogger
|
||||||
{
|
{
|
||||||
public bool DebugLogEnabled { get; set; } = true;
|
public bool DebugLogEnabled { get; set; } = false;
|
||||||
public bool InfoLogEnabled { get; set; } = true;
|
public bool InfoLogEnabled { get; set; } = true;
|
||||||
public bool WarnLogEnabled { get; set; } = true;
|
public bool WarnLogEnabled { get; set; } = true;
|
||||||
public bool ErrorLogenabled { get; set; } = true;
|
public bool ErrorLogenabled { get; set; } = true;
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
public class FileLogger : ILogger
|
public class FileLogger : ILogger
|
||||||
{
|
{
|
||||||
public bool DebugLogEnabled { get; set; } = true;
|
public bool DebugLogEnabled { get; set; } = false;
|
||||||
public bool InfoLogEnabled { get; set; } = true;
|
public bool InfoLogEnabled { get; set; } = true;
|
||||||
public bool WarnLogEnabled { get; set; } = true;
|
public bool WarnLogEnabled { get; set; } = true;
|
||||||
public bool ErrorLogenabled { get; set; } = true;
|
public bool ErrorLogenabled { get; set; } = true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user