We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the problem TDC currently prints a bunch of status messages to standard out. This presents a few problems for the client:
Describe the solution you'd like Move most logging statements from print_sys calls to logger.* calls
print_sys
logger.*
I.e., at the top of most modules:
import logging logger = logging.getLogger(__name__) # print_sys(mesg) logger.*(mesg)
where * is the appropriate method depending on the severity of the message (debug, info, warn, error, critical)
*
debug
info
warn
error
critical
Additional context this page contains some good resources for addressing this
The text was updated successfully, but these errors were encountered:
Thank you for the great suggestion, David! We will work on it!
Sorry, something went wrong.
kexinhuang12345
No branches or pull requests
Describe the problem
TDC currently prints a bunch of status messages to standard out. This presents a few problems for the client:
Describe the solution you'd like
Move most logging statements from
print_sys
calls tologger.*
callsI.e., at the top of most modules:
where
*
is the appropriate method depending on the severity of the message (debug
,info
,warn
,error
,critical
)Additional context
this page contains some good resources for addressing this
The text was updated successfully, but these errors were encountered: