Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit 35d5815

Browse files
committed
Downgraded the log type for missing view file
Downgraded from `Warn` to `Info` - this makes it easier to filter out in the log4net config.
1 parent b3be31b commit 35d5815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Our.Umbraco.DocTypeGridEditor/Extensions/ViewEnginesCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static bool ViewExists(
1717
if (result.View != null)
1818
return true;
1919

20-
LogHelper.Warn<Bootstrap>("No view file found with the name " + viewName);
20+
LogHelper.Info<ViewEngineCollection>("[DocTypeGridEditor] No view file found with the name '{0}'", () => viewName);
2121

2222
return false;
2323
}

0 commit comments

Comments
 (0)