Skip to content

Commit c24904b

Browse files
committed
typos.
1 parent f955b5c commit c24904b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Umbraco.Deploy.Contrib.Connectors/ValueConnectors/NestedContentValueConnector.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public string ToArtifact(object value, PropertyType propertyType, ICollection<Ar
8585
//Ensure that these content types have dependencies added
8686
foreach (var contentType in allContentTypes.Values)
8787
{
88-
_logger.Debug<BlockEditorValueConnector>("Adding dependency for content type {ContentType}.", contentType.Alias);
88+
_logger.Debug<NestedContentValueConnector>("Adding dependency for content type {ContentType}.", contentType.Alias);
8989
dependencies.Add(new ArtifactDependency(contentType.GetUdi(), false, ArtifactDependencyMode.Match));
9090
}
9191

@@ -206,20 +206,20 @@ public object FromArtifact(string value, PropertyType propertyType, object curre
206206
{
207207
row.PropertyValues[key] = convertedValue;
208208
}
209-
_logger.Debug<BlockEditorValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ConvertedValue}' using {PropertyValueConnectorType} for {PropertyType}.", key, innerValue, convertedValue, propertyValueConnector.GetType(), innerPropertyType.Alias);
209+
_logger.Debug<NestedContentValueConnector>("Mapped {Key} value '{PropertyValue}' to '{ConvertedValue}' using {PropertyValueConnectorType} for {PropertyType}.", key, innerValue, convertedValue, propertyValueConnector.GetType(), innerPropertyType.Alias);
210210
}
211211
else
212212
{
213213
row.PropertyValues[key] = innerValue;
214-
_logger.Debug<BlockEditorValueConnector>("{Key} value was null. Setting value as null without conversion.", key);
214+
_logger.Debug<NestedContentValueConnector>("{Key} value was null. Setting value as null without conversion.", key);
215215
}
216216
}
217217
}
218218

219219
// Note: NestedContent does not use formatting when serializing JSON values.
220220
value = JArray.FromObject(nestedContent).ToString(Formatting.None);
221221

222-
_logger.Info<BlockEditorValueConnector>("Finished converting {PropertyType} from artifact.", propertyType.Alias);
222+
_logger.Info<NestedContentValueConnector>("Finished converting {PropertyType} from artifact.", propertyType.Alias);
223223

224224
return value;
225225
}

0 commit comments

Comments
 (0)