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
I found this while tracking down something for Tom:
xanthos/xanthos/data_reader/ini_reader.py
Line 606 in 754f111
I believe the best practice would be to change print(...) to logging.warning(...)
print(...)
logging.warning(...)
Also, I grepped the rest of the source for instances of print, and this is the only one.
print
The text was updated successfully, but these errors were encountered:
Change print to logging.warning in ini_reader.
3fb6865
Fixes JGCRI#49
Successfully merging a pull request may close this issue.
I found this while tracking down something for Tom:
xanthos/xanthos/data_reader/ini_reader.py
Line 606 in 754f111
I believe the best practice would be to change
print(...)
tologging.warning(...)
Also, I grepped the rest of the source for instances of
print
, and this is the only one.The text was updated successfully, but these errors were encountered: