Remove LogWarning<T> from LoggerExtensions

This commit is contained in:
Nikolaj
2020-09-16 09:58:07 +02:00
parent dda6fb12a3
commit 488093add3
56 changed files with 105 additions and 155 deletions

View File

@@ -78,7 +78,7 @@ namespace Umbraco.Web.BackOffice.Controllers
// get the property editor
if (propertyDto.PropertyEditor == null)
{
Logger.LogWarning<ContentControllerBase>("No property editor found for property {PropertyAlias}", propertyDto.Alias);
Logger.LogWarning("No property editor found for property {PropertyAlias}", propertyDto.Alias);
continue;
}