This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# Emrys.FlashLog
.net 用队列超高速写日志
## Start
### 1、在程序开始注册FlashLog
如在MVC中,在Global中的Application_Start注册FlashLog即可。
```
FlashLogger.Instance().Register();
```
### 2、写日志
```
FlashLogger.Debug("Debug");
FlashLogger.Debug("Debug", new Exception("testexception"));
FlashLogger.Info("Info");
FlashLogger.Fatal("Fatal");
FlashLogger.Error("Error");
FlashLogger.Warn("Warn", new Exception("testexception"));