-
Notifications
You must be signed in to change notification settings - Fork 10
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
Logging misses some information leaked to stdin #21
Comments
Some of the
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While analyzing logs on a development setup I noticed that a lot if information is passed to stdin using the
print()
function. Some of the more crucial information (such as input check) did not even make it into logger facilities.A preferable solution would be to use a dedicated (configurable) logger for each such output instead of the
print()
functions (those should be removed). The default destination for the logging could be set asstdin
, which is by default captured on external systems.Using logger allows to select the logging message granularity and allows easier debugging.
The text was updated successfully, but these errors were encountered: