You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
In WindowsFormsWebAuthenticationDialogBase.cs, line 191, there's a call to output diagnostic information that uses Trace.WriteLine. When using ADAL in a console app, this results in extra useless logging junk all over my console output. Trace.WriteLine is for apps, not for libraries.
Put this logging behind a TraceSwitch so it can be turned off like you've done in the main ADAL library.
The text was updated successfully, but these errors were encountered:
In WindowsFormsWebAuthenticationDialogBase.cs, line 191, there's a call to output diagnostic information that uses Trace.WriteLine. When using ADAL in a console app, this results in extra useless logging junk all over my console output. Trace.WriteLine is for apps, not for libraries.
Put this logging behind a TraceSwitch so it can be turned off like you've done in the main ADAL library.
The text was updated successfully, but these errors were encountered: