DebugLogEnabled = false

This commit is contained in:
Timerix22 2022-11-17 22:08:29 +06:00
parent 0b5ba1a6e7
commit c7016371a5
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ namespace DTLib.Logging.New;
/// </summary>
public class CompositeLogger : ILogger
{
public bool DebugLogEnabled { get; set; } = true;
public bool DebugLogEnabled { get; set; } = false;
public bool InfoLogEnabled { get; set; } = true;
public bool WarnLogEnabled { get; set; } = true;
public bool ErrorLogenabled { get; set; } = true;

View File

@ -3,7 +3,7 @@
// вывод лога в консоль и файл
public class ConsoleLogger : ILogger
{
public bool DebugLogEnabled { get; set; } = true;
public bool DebugLogEnabled { get; set; } = false;
public bool InfoLogEnabled { get; set; } = true;
public bool WarnLogEnabled { get; set; } = true;
public bool ErrorLogenabled { get; set; } = true;

View File

@ -2,7 +2,7 @@
public class FileLogger : ILogger
{
public bool DebugLogEnabled { get; set; } = true;
public bool DebugLogEnabled { get; set; } = false;
public bool InfoLogEnabled { get; set; } = true;
public bool WarnLogEnabled { get; set; } = true;
public bool ErrorLogenabled { get; set; } = true;