Skip to content

Change logging category to include TestProxy#6643

Merged
scbedd merged 7 commits intoAzure:mainfrom
JoshLove-msft:tp-log-category
Aug 2, 2023
Merged

Change logging category to include TestProxy#6643
scbedd merged 7 commits intoAzure:mainfrom
JoshLove-msft:tp-log-category

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
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