This file is indexed.

/usr/share/pyshared/ZConfig/components/logger/base-logger.xml is in python-zconfig 2.9.3-0ubuntu1.

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
48
<component prefix="ZConfig.components.logger.logger">

  <import package="ZConfig.components.logger" file="abstract.xml"/>

  <sectiontype name="ZConfig.logger.base-logger">
    <description>
      Base definition for the logger types defined by
      ZConfig.components.logger.  This exists entirely to provide
      shared key definitions and documentation.
    </description>

    <key name="level"
         datatype="ZConfig.components.logger.datatypes.logging_level"
         default="info">
      <description>
        Verbosity setting for the logger.  Values must be a name of
        a level, or an integer in the range [0..50].  The names of the
        levels, in order of increasing verbosity (names on the same
        line are equivalent):

            critical, fatal
            error
            warn, warning
            info
            blather
            debug
            trace
            all

        The special name "notset", or the numeric value 0, indicates
        that the setting for the parent logger should be used.

        It is strongly recommended that names be used rather than
        numeric values to ensure that configuration files can be
        deciphered more easily.
      </description>
    </key>

    <multisection type="ZConfig.logger.handler"
                  attribute="handlers" name="*">
      <description>
        Handlers to install on this logger.  Each handler describes
        how logging events should be presented.
      </description>
    </multisection>
  </sectiontype>

</component>