feature/84-character-creation #88

Merged
rainote merged 60 commits from feature/84-character-creation into master 2023-11-17 07:29:21 +00:00
Showing only changes of commit 55276354db - Show all commits

View file

@ -19,8 +19,8 @@ builder.Configuration.AddJsonFile("settings.json", true, true)
builder.Services.AddLogging(); builder.Services.AddLogging();
var loggerFactory = LoggerFactory.Create(loggingBuilder => var loggerFactory = LoggerFactory.Create(loggingBuilder =>
{ {
loggingBuilder.AddFile("Logs/Server-{Date}.log", LogLevel.Trace); loggingBuilder.AddFile("logs/Server-{Date}.log", LogLevel.Trace);
loggingBuilder.AddFile("Logs/Server-{Date}.json.log", LogLevel.Trace, isJson: true); loggingBuilder.AddFile("logs/Server-{Date}.json.log", LogLevel.Trace, isJson: true);
loggingBuilder.AddConsole(); loggingBuilder.AddConsole();
}); });
builder.Services.AddDbContextPool<WonderkingContext>(o => builder.Services.AddDbContextPool<WonderkingContext>(o =>