feat(logging): Adds support for Serilog (#573)
Example:
```cs
public class SomeClass
{
private static ILogger _logger;
private static Logger => _logger ??= LogFactory.GetLogger(typeof(SomeClass));
...
}
```
This commit is contained in:
parent
5e1ec5416d
commit
3a619e0103
29 changed files with 347 additions and 176 deletions
|
|
@ -73,8 +73,8 @@ namespace Server
|
|||
catch (Exception e)
|
||||
{
|
||||
Utility.PushColor(ConsoleColor.Red);
|
||||
Persistence.WriteConsoleLine($"***** Bad deserialize of {name} *****");
|
||||
Persistence.WriteConsoleLine(e.ToString());
|
||||
Console.WriteLine($"***** Bad deserialize of {name} *****");
|
||||
Console.WriteLine(e.ToString());
|
||||
Utility.PopColor();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue