This file is indexed.

/usr/share/doc/python-oslo.log-doc/html/_sources/configfiles/index.txt is in python-oslo.log-doc 3.16.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
==============================
 Advanced Configuration Files
==============================

The oslo.config options described in :doc:`/opts` make it easy to
enable some default logging configuration behavior such as setting the
default log level and output file. For more advanced configurations
using translations or multiple output destinations oslo.log relies on
the Python standard library logging module configuration file
features.

The configuration file can be used to tie together the loggers,
handlers, and formatters and provide all of the necessary
configuration values to enable any desired behavior.  Refer to the
`Python logging Module Tutorial`_ for descriptions of these concepts.

Logger Names
============

Loggers are configured by name. Most OpenStack applications use logger
names based on the source file where the message is coming from. A
file named ``myapp/package/module.py`` corresponds to a logger named
``myapp.package.module``.

Loggers are configured in a tree structure, and the names reflect
their location in this hierarchy. It is not necessary to configure
every logger, since messages are passed up the tree during
processing. To control the logging for ``myapp``, for example, it is
only necessary to set up a logger for ``myapp`` and not
``myapp.package.module``.

The base of the tree, through which all log message may pass unless
otherwise discarded, is called the ``root`` logger.

Example Files
=============

.. toctree::
   :glob:

   example*

.. seealso::

   * `Python logging Module Tutorial`_

.. _Python logging Module Tutorial: https://docs.python.org/2.7/howto/logging.html