From c96319d88badef46dc57fb8b2a40b03c548b7d96 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Fri, 12 May 2023 10:39:05 -0700 Subject: [PATCH] Comment out debug logging from EF Core. --- Server/Data/AppDb.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Data/AppDb.cs b/Server/Data/AppDb.cs index 8ff00287b..210c5a6bd 100644 --- a/Server/Data/AppDb.cs +++ b/Server/Data/AppDb.cs @@ -42,7 +42,7 @@ public class AppDb : IdentityDbContext protected override void OnConfiguring(DbContextOptionsBuilder options) { options.ConfigureWarnings(x => x.Ignore(RelationalEventId.MultipleCollectionIncludeWarning)); - options.LogTo((message) => System.Diagnostics.Debug.Write(message)); + //options.LogTo((message) => System.Diagnostics.Debug.Write(message)); } protected override void OnModelCreating(ModelBuilder builder)