Reducing Number of Microsoft Entries in Log File

Following setting has to be added to the appsettings.json. It sets the logging level from Microsoft to warning.

"Logging": {
    "LogLevel": {
        "Default": "Warning",
        "Microsoft.*": "Warning" 
    }
}