Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > cllvectl
Operation : Linux premium131.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 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 210 bytes | June 05 2025 10:38:47. | |
base_subprocess_log.py | File | 9264 bytes | June 05 2025 10:38:47. | |
log.py | File | 1592 bytes | June 05 2025 10:38:47. |
# Module for logging in subprocess. Process related info (call stack) is logged # to simplify investigation of lveclt hangings # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2024 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT # Base module for logging in subprocess # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2024 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT import logging from cllvectl.base_subprocess_log import get_log_level, init_subprocess_logger as base_init_subprocess_logger DEFAULT_LOG_FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' LVECTL_SUBPROCESS_LOG_FILENAME = '/var/log/cloudlinux/lvectl-subprocess.log' LVECTL_LOG_FILENAME = '/var/log/cloudlinux/lvectl.log' def get_subprocess_logger(name: str, file_name: str = LVECTL_SUBPROCESS_LOG_FILENAME) -> logging.Logger: """Get ordinary synchronous logger instance :param str name: logger name :param str file_name: log file, defaults to LVECTL_LOG_FILENAME :return logging.Logger: logger instance """ return base_init_subprocess_logger(name, file_name) def get_synchronous_logger(name: str, file_name: str = LVECTL_LOG_FILENAME): logger = logging.getLogger(name) fh = logging.FileHandler(file_name) fh.setFormatter(logging.Formatter(DEFAULT_LOG_FORMAT)) log_level = get_log_level(file_name) fh.setLevel(log_level) logger.addHandler(fh) logger.setLevel(log_level) return logger
SILENT KILLER Tool