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
This is useful for debugging, but not appropriate for production code. These default values should be re-evaluated when it's time to ship -- most likely, something like this:
stream=sys.stderr, level=logging.ERROR
In addition, the CLI (and settings file, when it exists) should allow end users to set:
the logging level they'd like to use
the output destination (stdout or a specific log file, for example)
Since these options control how "verbose" the output is, we either:
don't need a "verbose" option
could use "verbose" as a logging preset -- for example, set logging level to INFO and all notifications to stdout
The text was updated successfully, but these errors were encountered:
Currently, logging is set in this app's entry point (
cli.py
) as follows:This is useful for debugging, but not appropriate for production code. These default values should be re-evaluated when it's time to ship -- most likely, something like this:
In addition, the CLI (and settings file, when it exists) should allow end users to set:
stdout
or a specific log file, for example)Since these options control how "verbose" the output is, we either:
stdout
The text was updated successfully, but these errors were encountered: