Blame doc/api_common.rst

Packit Service 21c75c
..
Packit Service 21c75c
  Copyright (C) 2014-2018 Red Hat, Inc.
Packit Service 21c75c
Packit Service 21c75c
  This copyrighted material is made available to anyone wishing to use,
Packit Service 21c75c
  modify, copy, or redistribute it subject to the terms and conditions of
Packit Service 21c75c
  the GNU General Public License v.2, or (at your option) any later version.
Packit Service 21c75c
  This program is distributed in the hope that it will be useful, but WITHOUT
Packit Service 21c75c
  ANY WARRANTY expressed or implied, including the implied warranties of
Packit Service 21c75c
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit Service 21c75c
  Public License for more details.  You should have received a copy of the
Packit Service 21c75c
  GNU General Public License along with this program; if not, write to the
Packit Service 21c75c
  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 21c75c
  02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
Packit Service 21c75c
  source code or documentation are not subject to the GNU General Public
Packit Service 21c75c
  License and may only be used or replicated with the express permission of
Packit Service 21c75c
  Red Hat, Inc.
Packit Service 21c75c
Packit Service 21c75c
==================================
Packit Service 21c75c
 Common Provisions of the DNF API
Packit Service 21c75c
==================================
Packit Service 21c75c
Packit Service 21c75c
.. _logging_label:
Packit Service 21c75c
Packit Service 21c75c
---------
Packit Service 21c75c
 Logging
Packit Service 21c75c
---------
Packit Service 21c75c
Packit Service 21c75c
DNF uses the standard `Python logging module <http://docs.python.org/3.3/library/logging.html>`_ to do its logging. Three standard loggers are provided:
Packit Service 21c75c
Packit Service 21c75c
* ``dnf``, used by the core and CLI components of DNF. Messages logged via this logger can end up written to the stdout (console) the DNF process is attached too. For this reason messages logged on the ``INFO`` level or above should be marked for localization (if the extension uses it).
Packit Service 21c75c
* ``dnf.plugin`` should be used by plugins for debugging and similar messages that are generally not written to the standard output streams but logged into the DNF logfile.
Packit Service 21c75c
* ``dnf.rpm`` is a logger used by RPM transaction callbacks. Plugins and extensions should not manipulate this logger.
Packit Service 21c75c
Packit Service 21c75c
Extensions and plugins can add or remove logging handlers of these loggers at their own discretion.