Using Quartz.Net 3.1.3 with an ASP.NET Core app using Serilog and I'm trying to disable debug logging of quartz because it spams the logs in a production environment.
I'm setting the following in appsettings.json
:
"Logging": {
"LogLevel": {
"System": "Warning",
"Microsoft": "Warning",
"MyCompanyNameSpace": "Information",
"Quartz": "Warning"
}
},
but I can still see that is logging:
2021-11-02 09:49:34.025 +02:00 [DBG] Calling Execute on job MyCompany.SyncJobGroup.SyncJobA
2021-11-02 09:49:34.154 +02:00 [DBG] Trigger instruction : DeleteTrigger
2021-11-02 09:49:34.154 +02:00 [DBG] Deleting trigger
How can I disable it?