Skip to content

Commit 9398a68

Browse files
Changes log level to Debug, no need to flood the logs with these messages
1 parent 393372c commit 9398a68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public string GetValue(Property property, ICollection<ArtifactDependency> depend
8686

8787
if (propertyType == null)
8888
{
89-
LogHelper.Info<InnerContentConnector>($"No Property Type found with alias {key} on Content Type {contentType.Alias}");
89+
LogHelper.Debug<InnerContentConnector>($"No Property Type found with alias {key} on Content Type {contentType.Alias}");
9090
continue;
9191
}
9292

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public string GetValue(Property property, ICollection<ArtifactDependency> depend
9393

9494
if (propertyType == null)
9595
{
96-
LogHelper.Info<NestedContentValueConnector>($"No Property Type found with alias {key} on Content Type {contentType.Alias}");
96+
LogHelper.Debug<NestedContentValueConnector>($"No Property Type found with alias {key} on Content Type {contentType.Alias}");
9797
continue;
9898
}
9999

0 commit comments

Comments
 (0)