# SOME DESCRIPTIVE TITLE. # Copyright (C) 1990-2016, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 2.7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-10-30 10:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../Doc/library/syslog.rst:2 msgid ":mod:`syslog` --- Unix syslog library routines" msgstr "" #: ../Doc/library/syslog.rst:9 msgid "" "This module provides an interface to the Unix ``syslog`` library routines. " "Refer to the Unix manual pages for a detailed description of the ``syslog`` " "facility." msgstr "" #: ../Doc/library/syslog.rst:13 msgid "" "This module wraps the system ``syslog`` family of routines. A pure Python " "library that can speak to a syslog server is available in the :mod:`logging." "handlers` module as :class:`SysLogHandler`." msgstr "" #: ../Doc/library/syslog.rst:17 msgid "The module defines the following functions:" msgstr "Le module définit les fonctions suivantes :" #: ../Doc/library/syslog.rst:23 msgid "" "Send the string *message* to the system logger. A trailing newline is added " "if necessary. Each message is tagged with a priority composed of a " "*facility* and a *level*. The optional *priority* argument, which defaults " "to :const:`LOG_INFO`, determines the message priority. If the facility is " "not encoded in *priority* using logical-or (``LOG_INFO | LOG_USER``), the " "value given in the :func:`openlog` call is used." msgstr "" #: ../Doc/library/syslog.rst:30 msgid "" "If :func:`openlog` has not been called prior to the call to :func:`syslog`, " "``openlog()`` will be called with no arguments." msgstr "" #: ../Doc/library/syslog.rst:36 msgid "" "Logging options of subsequent :func:`syslog` calls can be set by calling :" "func:`openlog`. :func:`syslog` will call :func:`openlog` with no arguments " "if the log is not currently open." msgstr "" #: ../Doc/library/syslog.rst:40 msgid "" "The optional *ident* keyword argument is a string which is prepended to " "every message, and defaults to ``sys.argv[0]`` with leading path components " "stripped. The optional *logoption* keyword argument (default is 0) is a bit " "field -- see below for possible values to combine. The optional *facility* " "keyword argument (default is :const:`LOG_USER`) sets the default facility " "for messages which do not have a facility explicitly encoded." msgstr "" #: ../Doc/library/syslog.rst:50 msgid "" "Reset the syslog module values and call the system library ``closelog()``." msgstr "" #: ../Doc/library/syslog.rst:52 msgid "" "This causes the module to behave as it does when initially imported. For " "example, :func:`openlog` will be called on the first :func:`syslog` call " "(if :func:`openlog` hasn't already been called), and *ident* and other :func:" "`openlog` parameters are reset to defaults." msgstr "" #: ../Doc/library/syslog.rst:60 msgid "" "Set the priority mask to *maskpri* and return the previous mask value. " "Calls to :func:`syslog` with a priority level not set in *maskpri* are " "ignored. The default is to log all priorities. The function " "``LOG_MASK(pri)`` calculates the mask for the individual priority *pri*. " "The function ``LOG_UPTO(pri)`` calculates the mask for all priorities up to " "and including *pri*." msgstr "" #: ../Doc/library/syslog.rst:67 msgid "The module defines the following constants:" msgstr "" #: ../Doc/library/syslog.rst:72 msgid "Priority levels (high to low):" msgstr "" #: ../Doc/library/syslog.rst:70 msgid "" ":const:`LOG_EMERG`, :const:`LOG_ALERT`, :const:`LOG_CRIT`, :const:" "`LOG_ERR`, :const:`LOG_WARNING`, :const:`LOG_NOTICE`, :const:`LOG_INFO`, :" "const:`LOG_DEBUG`." msgstr "" #: ../Doc/library/syslog.rst:78 msgid "Facilities:" msgstr "" #: ../Doc/library/syslog.rst:75 msgid "" ":const:`LOG_KERN`, :const:`LOG_USER`, :const:`LOG_MAIL`, :const:" "`LOG_DAEMON`, :const:`LOG_AUTH`, :const:`LOG_LPR`, :const:`LOG_NEWS`, :const:" "`LOG_UUCP`, :const:`LOG_CRON`, :const:`LOG_SYSLOG` and :const:`LOG_LOCAL0` " "to :const:`LOG_LOCAL7`." msgstr "" #: ../Doc/library/syslog.rst:83 msgid "Log options:" msgstr "" #: ../Doc/library/syslog.rst:81 msgid "" ":const:`LOG_PID`, :const:`LOG_CONS`, :const:`LOG_NDELAY`, :const:" "`LOG_NOWAIT` and :const:`LOG_PERROR` if defined in ````." msgstr "" #: ../Doc/library/syslog.rst:86 msgid "Examples" msgstr "Exemples" #: ../Doc/library/syslog.rst:89 msgid "Simple example" msgstr "" #: ../Doc/library/syslog.rst:91 msgid "A simple set of examples::" msgstr "" #: ../Doc/library/syslog.rst:99 msgid "" "An example of setting some log options, these would include the process ID " "in logged messages, and write the messages to the destination facility used " "for mail logging::" msgstr ""