GRAYBYTE WORDPRESS FILE MANAGER4277

Server IP : 198.54.121.189 / Your IP : 216.73.216.224
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/lib/python2.7/site-packages/pip/utils/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/lib/python2.7/site-packages/pip/utils//logging.py
from __future__ import absolute_import

import contextlib
import logging
import logging.handlers
import os

try:
    import threading
except ImportError:
    import dummy_threading as threading

from pip.compat import WINDOWS
from pip.utils import ensure_dir

try:
    from pip._vendor import colorama
# Lots of different errors can come from this, including SystemError and
# ImportError.
except Exception:
    colorama = None


_log_state = threading.local()
_log_state.indentation = 0


@contextlib.contextmanager
def indent_log(num=2):
    """
    A context manager which will cause the log output to be indented for any
    log messages emitted inside it.
    """
    _log_state.indentation += num
    try:
        yield
    finally:
        _log_state.indentation -= num


def get_indentation():
    return getattr(_log_state, 'indentation', 0)


class IndentingFormatter(logging.Formatter):

    def format(self, record):
        """
        Calls the standard formatter, but will indent all of the log messages
        by our current indentation level.
        """
        formatted = logging.Formatter.format(self, record)
        formatted = "".join([
            (" " * get_indentation()) + line
            for line in formatted.splitlines(True)
        ])
        return formatted


def _color_wrap(*colors):
    def wrapped(inp):
        return "".join(list(colors) + [inp, colorama.Style.RESET_ALL])
    return wrapped


class ColorizedStreamHandler(logging.StreamHandler):

    # Don't build up a list of colors if we don't have colorama
    if colorama:
        COLORS = [
            # This needs to be in order from highest logging level to lowest.
            (logging.ERROR, _color_wrap(colorama.Fore.RED)),
            (logging.WARNING, _color_wrap(colorama.Fore.YELLOW)),
        ]
    else:
        COLORS = []

    def __init__(self, stream=None):
        logging.StreamHandler.__init__(self, stream)

        if WINDOWS and colorama:
            self.stream = colorama.AnsiToWin32(self.stream)

    def should_color(self):
        # Don't colorize things if we do not have colorama
        if not colorama:
            return False

        real_stream = (
            self.stream if not isinstance(self.stream, colorama.AnsiToWin32)
            else self.stream.wrapped
        )

        # If the stream is a tty we should color it
        if hasattr(real_stream, "isatty") and real_stream.isatty():
            return True

        # If we have an ASNI term we should color it
        if os.environ.get("TERM") == "ANSI":
            return True

        # If anything else we should not color it
        return False

    def format(self, record):
        msg = logging.StreamHandler.format(self, record)

        if self.should_color():
            for level, color in self.COLORS:
                if record.levelno >= level:
                    msg = color(msg)
                    break

        return msg


class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler):

    def _open(self):
        ensure_dir(os.path.dirname(self.baseFilename))
        return logging.handlers.RotatingFileHandler._open(self)


class MaxLevelFilter(logging.Filter):

    def __init__(self, level):
        self.level = level

    def filter(self, record):
        return record.levelno < self.level

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 20:23:47
root / root
0755
__init__.py
26.55 KB
April 21 2022 18:08:21
root / root
0644
__init__.pyc
27.075 KB
April 21 2022 18:08:35
root / root
0644
__init__.pyo
27.018 KB
April 21 2022 18:08:36
root / root
0644
appdirs.py
8.604 KB
April 21 2022 18:08:21
root / root
0644
appdirs.pyc
8.405 KB
April 21 2022 18:08:35
root / root
0644
appdirs.pyo
8.405 KB
April 21 2022 18:08:35
root / root
0644
build.py
1.281 KB
April 21 2022 18:08:21
root / root
0644
build.pyc
1.679 KB
April 21 2022 18:08:35
root / root
0644
build.pyo
1.679 KB
April 21 2022 18:08:35
root / root
0644
deprecation.py
2.18 KB
April 21 2022 18:08:21
root / root
0644
deprecation.pyc
2.263 KB
April 21 2022 18:08:35
root / root
0644
deprecation.pyo
2.263 KB
April 21 2022 18:08:35
root / root
0644
encoding.py
0.948 KB
April 21 2022 18:08:21
root / root
0644
encoding.pyc
1.252 KB
April 21 2022 18:08:35
root / root
0644
encoding.pyo
1.252 KB
April 21 2022 18:08:35
root / root
0644
filesystem.py
0.878 KB
April 21 2022 18:08:21
root / root
0644
filesystem.pyc
0.762 KB
April 21 2022 18:08:35
root / root
0644
filesystem.pyo
0.762 KB
April 21 2022 18:08:35
root / root
0644
glibc.py
2.87 KB
April 21 2022 18:08:21
root / root
0644
glibc.pyc
1.783 KB
April 21 2022 18:08:35
root / root
0644
glibc.pyo
1.783 KB
April 21 2022 18:08:35
root / root
0644
hashes.py
2.799 KB
April 21 2022 18:08:21
root / root
0644
hashes.pyc
3.868 KB
April 21 2022 18:08:35
root / root
0644
hashes.pyo
3.868 KB
April 21 2022 18:08:35
root / root
0644
logging.py
3.249 KB
April 21 2022 18:08:21
root / root
0644
logging.pyc
4.729 KB
April 21 2022 18:08:35
root / root
0644
logging.pyo
4.729 KB
April 21 2022 18:08:35
root / root
0644
outdated.py
5.849 KB
April 21 2022 18:08:21
root / root
0644
outdated.pyc
5.547 KB
April 21 2022 18:08:35
root / root
0644
outdated.pyo
5.547 KB
April 21 2022 18:08:35
root / root
0644
packaging.py
2.031 KB
April 21 2022 18:08:21
root / root
0644
packaging.pyc
2.403 KB
April 21 2022 18:08:35
root / root
0644
packaging.pyo
2.403 KB
April 21 2022 18:08:35
root / root
0644
setuptools_build.py
0.271 KB
April 21 2022 18:08:21
root / root
0644
setuptools_build.pyc
0.339 KB
April 21 2022 18:08:35
root / root
0644
setuptools_build.pyo
0.339 KB
April 21 2022 18:08:35
root / root
0644
ui.py
11.325 KB
April 21 2022 18:08:21
root / root
0644
ui.pyc
11.409 KB
April 21 2022 18:08:35
root / root
0644
ui.pyo
11.341 KB
April 21 2022 18:08:36
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF