Fixes logging message

This commit is contained in:
Shannon
2019-02-18 18:06:54 +11:00
parent f079f3d66b
commit 79c67e9c1b

View File

@@ -15,7 +15,7 @@ namespace Umbraco.Core.Persistence.Factories
{
if (!editors.TryGet(dto.EditorAlias, out var editor))
{
logger.Warn(typeof(DataTypeFactory), "Could not find an editor with alias {dto.EditorAlias}, converting to label", dto.EditorAlias);
logger.Warn(typeof(DataTypeFactory), "Could not find an editor with alias {EditorAlias}, converting to label", dto.EditorAlias);
//convert to label
editor = new LabelPropertyEditor(logger);
}