Skip to content

Commit

Permalink
Revert change to FunctionConsoleLogCategoryName
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpeng36 committed Jul 7, 2022
1 parent b93f674 commit 6aadb86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Azure.Functions.Cli/Common/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ internal static bool DefaultLoggingFilter(string category, LogLevel actualLevel,
{
if (LogCategories.IsFunctionUserCategory(category)
|| LogCategories.IsFunctionCategory(category)
|| category.Equals(WorkerConstants.ConsoleLogCategoryName, StringComparison.OrdinalIgnoreCase))
|| category.Equals(WorkerConstants.FunctionConsoleLogCategoryName, StringComparison.OrdinalIgnoreCase))
{
return actualLevel >= userLogMinLevel;
}
Expand Down

0 comments on commit 6aadb86

Please sign in to comment.