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
During the execution of handle_version_update, all logger invocations are not printed even if --debug is specified. This is because handle_version_update is called in AzCli.__init__, long before the logger is initialized.
This makes the troubleshooting of handle_version_update difficult.
Knack previously introduced init_debug_log and init_info_log to save __init__ logs (microsoft/knack#209), but an easier solution would be to call handle_version_update after the logger is initialized.
The text was updated successfully, but these errors were encountered:
ghost
added
the
needs-triage
This is a new issue that needs to be triaged to the appropriate team.
label
Aug 12, 2021
During the execution of
handle_version_update
, alllogger
invocations are not printed even if--debug
is specified. This is becausehandle_version_update
is called inAzCli.__init__
, long before the logger is initialized.This makes the troubleshooting of
handle_version_update
difficult.Knack previously introduced
init_debug_log
andinit_info_log
to save__init__
logs (microsoft/knack#209), but an easier solution would be to callhandle_version_update
after the logger is initialized.The text was updated successfully, but these errors were encountered: