diff options
| author | Victor S <57849063+transtrike@users.noreply.github.com> | 2021-04-02 11:35:35 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-02 11:35:35 +0300 |
| commit | 2448c4d31188aed26605c5e3c282bacc3bd71ae5 (patch) | |
| tree | e94903e2df031e67926735522caa0ba4dabfcdaa /src/Web/DevHive.Web/Configurations | |
| parent | 0cf2a3c99141f878168271e53999cdacac95f3c4 (diff) | |
| parent | 19172a7b0a0f07144943fa7df9fb9090c9a87ec1 (diff) | |
| download | DevHive-2448c4d31188aed26605c5e3c282bacc3bd71ae5.tar DevHive-2448c4d31188aed26605c5e3c282bacc3bd71ae5.tar.gz DevHive-2448c4d31188aed26605c5e3c282bacc3bd71ae5.zip | |
Merge pull request #25 from Team-Kaleidoscope/logger
Implementation of Logger(Serilog)
Diffstat (limited to 'src/Web/DevHive.Web/Configurations')
| -rw-r--r-- | src/Web/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Web/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs b/src/Web/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs index 1bd8df0..b4c49b4 100644 --- a/src/Web/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs +++ b/src/Web/DevHive.Web/Configurations/Extensions/ConfigureDatabase.cs @@ -18,7 +18,7 @@ namespace DevHive.Web.Configurations.Extensions { services.AddDbContext<DevHiveContext>(options => { - options.EnableSensitiveDataLogging(true); + // options.EnableSensitiveDataLogging(true); options.UseNpgsql(configuration.GetConnectionString("DEV"), options => { options.UseQuerySplittingBehavior(QuerySplittingBehavior.SplitQuery); |
