- Update FastConsole Colors.
- Change FastConsole to static class.
- Update FastConsole colors.
- Add DetachLogger() method.
- Update Test App.
- Change FastLog DateTime format.
- Update Test App.
- Add FastConsole feature to print message(s) very easy :
- PrintText(string text, bool IncludeDateTime = true)
- PrintInfo(string info, bool IncludeDateTime = true)
- PrintWarning(string warning, bool IncludeDateTime = true)
- PrintError(string error, bool IncludeDateTime = true)
- PrintDebug(string error, bool IncludeDateTime = true)
- PrintException(Exception exception, bool IncludeDateTime = true, bool JsonFormat = true)
- Update TestApp to test the FastConsole feture.
- Add "ToJsonFormat()" and "ToStringFormat()" extension methods to the "Exception" class.
- Add "public FluentConsoleBuilder Write(Exception exception, bool JsonFormat = true)" method.
- Fix "WriteLine(List IntegerList, bool formatted = false)" method.
- Update Test App.
- Refactor Write and WriteLine.
- Add more overload for Write and WriteLine
- Add Exception class print on console with normal and JSON format.
- Rename some methods.
- Improve performance.
- Add "Write/WriteLineNumberRange" method.
- Add "ResetColor" method.
- Change "Print" method type to void.
- Change log created !
- Fix Logger bug.
- Fix string logging.