This file is indexed.

/usr/lib/python3/dist-packages/provisioningserver/logger/__init__.py is in python3-maas-provisioningserver 2.0.0~beta3+bzr4941-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
# Copyright 2014-2016 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""__init__ for the provisioningserver.logger package."""

__all__ = [
    "basicConfig",
    "DEFAULT_LOG_FORMAT",
    "DEFAULT_LOG_FORMAT_DATE",
    "DEFAULT_LOG_LEVEL",
    "get_maas_logger"
    ]

import logging
import sys

from provisioningserver.logger.log import get_maas_logger
from twisted.python import log

# This format roughly matches Twisted's default, so that combined Twisted and
# Django logs are consistent with one another.
DEFAULT_LOG_FORMAT = "%(asctime)s [%(name)s] %(levelname)s: %(message)s"
DEFAULT_LOG_FORMAT_DATE = "%Y-%m-%d %H:%M:%S"
DEFAULT_LOG_LEVEL = logging.INFO


def basicConfig():
    """Configure basic logging for both Twisted and Python.

    This is useful during start-up, to get something going.

    Note that nothing is done to address time-zones. Both Twisted and Python's
    ``logging`` using local-time by default.
    """
    # Globally override Twisted's log date format. It's tricky to get to the
    # FileLogObserver that twistd installs so that we can modify its config
    # alone, but we actually do want to make a global change anyway.
    log.FileLogObserver.timeFormat = DEFAULT_LOG_FORMAT_DATE
    # Get basic Python logging working with options consistent with Twisted.
    logging.basicConfig(
        stream=sys.stdout, level=DEFAULT_LOG_LEVEL, format=DEFAULT_LOG_FORMAT,
        datefmt=DEFAULT_LOG_FORMAT_DATE)