Skip to content
Snippets Groups Projects
Unverified Commit 6a36b8e5 authored by Shantanu's avatar Shantanu Committed by GitHub
Browse files

[3.11] Clarifying the documentation on library/syslog (GH-92587) (GH-95492)


(cherry picked from commit b7ce4625)

Co-authored-by: default avatarNicolas Haller <nicolas@haller.im>
parent 0e636e4e
No related branches found
No related tags found
No related merge requests found
...@@ -31,10 +31,15 @@ The module defines the following functions: ...@@ -31,10 +31,15 @@ The module defines the following functions:
value given in the :func:`openlog` call is used. value given in the :func:`openlog` call is used.
If :func:`openlog` has not been called prior to the call to :func:`syslog`, If :func:`openlog` has not been called prior to the call to :func:`syslog`,
``openlog()`` will be called with no arguments. :func:`openlog` will be called with no arguments.
.. audit-event:: syslog.syslog priority,message syslog.syslog .. audit-event:: syslog.syslog priority,message syslog.syslog
.. versionchanged:: 3.2
In previous versions, :func:`openlog` would not be called automatically if
it wasn't called prior to the call to :func:`syslog`, deferring to the syslog
implementation to call ``openlog()``.
.. function:: openlog([ident[, logoption[, facility]]]) .. function:: openlog([ident[, logoption[, facility]]])
...@@ -53,8 +58,7 @@ The module defines the following functions: ...@@ -53,8 +58,7 @@ The module defines the following functions:
.. versionchanged:: 3.2 .. versionchanged:: 3.2
In previous versions, keyword arguments were not allowed, and *ident* was In previous versions, keyword arguments were not allowed, and *ident* was
required. The default for *ident* was dependent on the system libraries, required.
and often was ``python`` instead of the name of the Python program file.
.. function:: closelog() .. function:: closelog()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment