Skip to content

Commit da131a2

Browse files
committed
Reverted some info/warn logging back to debug to avoid log spamming.
1 parent a2b4221 commit da131a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public BlockEditorValueConnector(IContentTypeService contentTypeService, Lazy<Va
3939

4040
public virtual string ToArtifact(object value, PropertyType propertyType, ICollection<ArtifactDependency> dependencies)
4141
{
42-
_logger.Info<BlockEditorValueConnector>("Converting {PropertyType} to artifact.", propertyType.Alias);
42+
_logger.Debug<BlockEditorValueConnector>("Converting {PropertyType} to artifact.", propertyType.Alias);
4343
var svalue = value as string;
4444

4545
// nested values will arrive here as JObject - convert to string to enable reuse of same code as when non-nested.
@@ -51,7 +51,7 @@ public virtual string ToArtifact(object value, PropertyType propertyType, IColle
5151

5252
if (string.IsNullOrWhiteSpace(svalue))
5353
{
54-
_logger.Warn<BlockEditorValueConnector>($"Value is null or whitespace. Skipping conversion to artifact.");
54+
_logger.Debug<BlockEditorValueConnector>($"Value is null or whitespace. Skipping conversion to artifact.");
5555
return null;
5656
}
5757

@@ -128,7 +128,7 @@ public virtual string ToArtifact(object value, PropertyType propertyType, IColle
128128
}
129129

130130
value = JsonConvert.SerializeObject(blockEditorValue);
131-
_logger.Info<BlockEditorValueConnector>("Finished converting {PropertyType} to artifact.", propertyType.Alias);
131+
_logger.Debug<BlockEditorValueConnector>("Finished converting {PropertyType} to artifact.", propertyType.Alias);
132132
return (string) value;
133133
}
134134

0 commit comments

Comments
 (0)