-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
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
Replace sys.std{out,err} statements with logger/print calls #331
Conversation
I would personally be in favour of using |
Even things like these? print('\nPicked requested release id %s' % release)
print('Artist: %s' % metadatas[0].artist.encode('utf-8'))
print('Title : %s' % metadatas[0].title.encode('utf-8')) |
40035c1
to
2bd5f6a
Compare
2bd5f6a
to
0d0b45d
Compare
8d05250
to
9f707cc
Compare
I think it is complete now... |
9f707cc
to
eb39678
Compare
We're going to increase our usage of logger statements instead of print instructions (where deemed opportune).
eb39678
to
c7deccb
Compare
Looks good to me. |
Fixes #303.