'How disable Logging on table `debug.systemLogs` in deploy .NET Core Api?

When I publish my project and start it in iis on the server, a table with debug schema and systemLogs name is generated on the database by serilog nuget package, and its size growth so quickly. I changed the log setting of appsetting.Development.json and appsetting.json as below but data still has been inserted into this table.

  "Logging": {
"IncludeScopes": false,
"LogLevel": {
  "Default": "None",
  "System": "None",
  "Microsoft": "None"
}

},

Can anybody say me how can I disable this Logging?!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source