Remove exception logging and finish LogWarning

This commit is contained in:
Nikolaj
2020-09-14 14:10:19 +02:00
parent db4652c0be
commit 161061dbbc
31 changed files with 84 additions and 261 deletions

View File

@@ -65,7 +65,7 @@ namespace Umbraco.Web.Common.Middleware
catch (Exception ex)
{
// try catch so we don't kill everything in all requests
_logger.LogError<UmbracoRequestMiddleware>(ex);
_logger.LogError<UmbracoRequestMiddleware>(ex.Message);
}
finally
{