Log message format fix for PR6617

This commit is contained in:
Warren Buckley
2020-01-20 09:11:29 +00:00
parent 6d92f5915a
commit d378495942

View File

@@ -51,7 +51,7 @@ namespace Umbraco.Core.Composing
}
catch (Exception ex)
{
_logger.Error(componentType, ex, "Error while terminating component {ComponentType}.", componentType.FullName);
_logger.Error<ComponentCollection>(ex, "Error while terminating component {ComponentType}.", componentType.FullName);
}
}
}