Change LogFunctionScaleVote log level from Debug to Information#3189
Merged
Conversation
This was referenced Mar 19, 2026
Merged
Merged
mathewc
reviewed
Mar 20, 2026
Scale vote logs should be visible to customers at the default Information log level. The previous Debug level caused vote details to be invisible in App Insights for customers using RDS (EP with RDS, Flex Consumption), where the host's ILogger goes directly to their Application Insights. The SC's OpenTelemetry logger intercepts these events via EventId 8002, so the level change has no impact on the SC-side App Insights feature.
c22e2c8 to
0a2e7ad
Compare
mathewc
approved these changes
Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Change
LogFunctionScaleVotelog level fromDebugtoInformationinScaleLoggerExtension.cs.Motivation
Scale vote logs should be visible to customers at the default Information log level. update LogFunctionScaleVote in the WebJobs SDK (ScaleLoggerExtension.cs) to log at Information instead of Debug — that way customers continue seeing scale votes as before, migrating the vote detail logs to LogFunctionScaleVote will follow in phase 2 once the SDK log level fix ships.
This was identified during review of the extension PRs that adopt
LogFunctionScaleVotefor SC App Insights diagnostics:Changes
LogFunctionScaleVoteLoggerMessage.Definedelegates changed fromLogLevel.DebugtoLogLevel.InformationImpact
LogFunctionScaleVotecall (line 196) will now log at Information instead of Debug, which is desirable