Modify minimum log level

"// Logging": "---------------------------- Log configuration ----------------------------",

"Serilog": {

"Using": [

"Serilog.Sinks.Async",

"Serilog.Sinks.File",

"Serilog.Expressions",

"Serilog.Exceptions",

"Serilog.Enrichers.ClientInfo",

"DeviceSphereAuth"

],

"MinimumLevel": {

"Default": "Information",

"Override": {

"Microsoft": "Warning",

"Microsoft.Hosting.Lifetime": "Information",

"Microsoft.AspNetCore.Hosting.Diagnostics": "Information",

"System": "Warning"

}

},

Default minimal log level is "Information".
Changing the log level can help on finding error by reduce it to debug or enhancing performance and reduce disk space usage by enhance it to "Warning" or "Error". Both are only recommended in special cases of need. The default log level should be fine in most cases.