Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change logging category to include TestProxy #6643

Merged
merged 7 commits into from
Aug 2, 2023

Conversation

JoshLove-msft
Copy link
Member

@JoshLove-msft JoshLove-msft commented Aug 2, 2023

This will allow users to set an env var Logging__LogLevel__Azure.Sdk.Tools.TestProxy = "Debug" instead of changing the Default or DebugLogging category. Note changing Default will still work in the same way and I don't think we advertised "DebugLogging" to anyone so it hopefully won't break anyone. However, changing the Default log level would break tests in .NET since it would cause tests to start emitting logs.

By introducing a specific logging category (or more accurately renaming the specific logging category), we can let it still be configurable for users without requiring users to change the Default level.

@JoshLove-msft JoshLove-msft changed the title Change logging category to be TestProxy Change logging category to include TestProxy Aug 2, 2023
@@ -40,7 +34,7 @@ public static void ConfigureLogger(ILoggerFactory factory)
{
if (Logger == null && factory != null)
{
Logger = factory.CreateLogger("DebugLogging");
Logger = factory.CreateLogger("Azure.Sdk.Tools.TestProxy");
Copy link
Member Author

@JoshLove-msft JoshLove-msft Aug 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The generic CreateLogger<T> method doesn't work with static classes, so can't use:
CreateLogger<DebugLogger>()

Copy link
Member

@scbedd scbedd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense. Thanks Josh!

@scbedd scbedd merged commit 173c94c into Azure:main Aug 2, 2023
@scbedd scbedd mentioned this pull request Aug 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants