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
example: It's should be returned pass when print show() but it actually returns None.
show()
@logger.patch def show(): print("message in show") return 'pass' print(show())
output: 2017-06-15 03:14:20,077 - test - DEBUG - message in show None
The text was updated successfully, but these errors were encountered:
Fix when call decorator @logger.path can't return value
58a401d
fix it at 58a401d
Sorry, something went wrong.
No branches or pull requests
example:
It's should be returned pass when print
show()
but it actually returns None.output:
2017-06-15 03:14:20,077 - test - DEBUG - message in show
None
The text was updated successfully, but these errors were encountered: