You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_logger.Warn<BlockEditorValueConnector>("No property type found with alias {PropertyTypeAlias} on content type {ContentTypeAlias}.",key,contentType.Alias);
107
+
_logger.Warn<BlockEditorValueConnector>("No property type found with alias {PropertyType} on content type {ContentType}.",key,contentType.Alias);
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ParsedValue}' using {PropertyValueConnectorType} for {PropertyTypeAlias}.",key,block.PropertyValues[key],parsedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
119
+
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ParsedValue}' using {PropertyValueConnectorType} for {PropertyType}.",key,block.PropertyValues[key],parsedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ConvertedValue}' using {PropertyValueConnectorType} for {PropertyType}.",key,innerValue,convertedValue,propertyValueConnector.GetType(),innerPropertyType.Alias);
196
199
}
197
200
else
198
201
{
199
-
block.PropertyValues[key]=propertyValue;
202
+
block.PropertyValues[key]=innerValue;
203
+
_logger.Debug<BlockEditorValueConnector>("{Key} value was null. Setting value as null without conversion.",key);
200
204
}
201
205
}
202
206
}
203
207
208
+
_logger.Info<BlockEditorValueConnector>("Finished converting {PropertyType} from artifact.",propertyType.Alias);
0 commit comments