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

@@ -118,7 +118,7 @@ namespace Umbraco.Web.Common.Install
if (_reported && _reportedLevel == level) return;
_reported = true;
_reportedLevel = level;
logger.LogWarning(typeof(UmbracoInstallApplicationBuilderExtensions), message);
logger.LogWarning(message);
}
}
}