This file is indexed.

/usr/share/pyshared/ZConfig/components/logger/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
<component prefix="ZConfig.components.logger.logger">
  <description>
  </description>

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

  <sectiontype name="logger"
               datatype=".LoggerFactory"
               extends="ZConfig.logger.base-logger"
               implements="ZConfig.logger.log">
    <key name="propagate"
         datatype="boolean"
         default="true">
      <description>
        Indicates whether events that reach this logger should be
        propogated toward the root of the logger hierarchy.  If true
        (the default), events will be passed to the logger's parent
        after being handled.  If false, events will be handled and the
        parent will not be informed.  There is not a way to control
        propogation by the severity of the event.
      </description>
    </key>

    <key name="name"
         datatype="dotted-name"
         >
      <description>
        The dotted name of the logger.  This give it a location in the
        logging hierarchy.  Most applications provide a specific set
        of subsystem names for which logging is meaning; consult the
        application documentation for the set of names that are
        actually interesting for the application.
      </description>
    </key>
  </sectiontype>

</component>