Add more debug logging to admin logs

This commit is contained in:
DrSmugleaf
2021-12-20 01:23:11 +01:00
parent 4eee199665
commit f23ca09d09
2 changed files with 10 additions and 0 deletions

View File

@@ -38,6 +38,10 @@ namespace Content.Server.Database
{
x.Ignore(CoreEventId.ManyServiceProvidersCreatedWarning);
});
#if DEBUG
options.EnableSensitiveDataLogging();
#endif
}
public PostgresServerDbContext(DbContextOptions<ServerDbContext> options) : base(options)