On 2/24/20, Guido van Rossum <[email protected]> wrote: > > The stdlib does very little logging of its own -- logging is up to > the application.
It's not logging per se, but the standard library does have an extensive and growing list of audit events that are intended to assist with testing, logging and security monitoring. https://docs.python.org/3/library/audit_events.html https://www.python.org/dev/peps/pep-0578 An event is generated for subprocess.Popen that includes the executable, args, cwd, and env parameters. There's no event for the result, however. _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/OZREZJRFMJERP4OMG23BEPVPGPUYBXU7/ Code of Conduct: http://python.org/psf/codeofconduct/
