-
Notifications
You must be signed in to change notification settings - Fork 532
Unify Logging #276
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
Unify Logging #276
Conversation
@terriko @pdxjohnny Can you review this so that I can continue with removing the verbose/quiet flags. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is lovely work. Thank you so much! Just two changes then I think we're good to merge!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One last thing then this is good to go, thanks!
cve_bin_tool/cli.py
Outdated
print("Known CVEs in version " + str(version)) | ||
print(", ".join(found_cves.keys())) | ||
self.logger.info( | ||
filename, result["is_or_contains"], modulename, version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The first argument to this should be a format string, "%s %s %s %s"
Closes #197
Closes #182