Browse Source

Logger.Default 默认启用日志文件。

master
王厅 1 week ago
parent
commit
78c8a94022
  1. 4
      Apewer/Logger.cs

4
Apewer/Logger.cs

@ -13,7 +13,7 @@ namespace Apewer
{
private bool _useconsole = true;
private bool _usefile = true;
private bool _usefile = false;
private bool _uselock = false;
private int _reserved = 30;
private LogCollector _collector = null;
@ -303,7 +303,7 @@ namespace Apewer
#region 默认实列。
private static Logger _default = new Logger(null, true, false, true);
private static Logger _default = new Logger(null, true, true, true);
private static Logger _console = new Logger(null, true, false, true);
private static Logger _web = new Logger(null, true, false, true);

Loading…
Cancel
Save