Skip to content

Commit a6d8238

Browse files
committed
Reverted further warnings to debug level.
1 parent fcf10ff commit a6d8238

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public virtual string ToArtifact(object value, PropertyType propertyType, IColle
134134

135135
public virtual object FromArtifact(string value, PropertyType propertyType, object currentValue)
136136
{
137-
_logger.Info<BlockEditorValueConnector>("Converting {PropertyType} from artifact.", propertyType.Alias);
137+
_logger.Debug<BlockEditorValueConnector>("Converting {PropertyType} from artifact.", propertyType.Alias);
138138
if (string.IsNullOrWhiteSpace(value))
139139
{
140140
return value;
@@ -211,7 +211,7 @@ public virtual object FromArtifact(string value, PropertyType propertyType, obje
211211
}
212212
}
213213

214-
_logger.Info<BlockEditorValueConnector>("Finished converting {PropertyType} from artifact.", propertyType.Alias);
214+
_logger.Debug<BlockEditorValueConnector>("Finished converting {PropertyType} from artifact.", propertyType.Alias);
215215

216216
return JObject.FromObject(blockEditorValue);
217217
}

0 commit comments

Comments
 (0)