Python logging.logProcesses() Examples
The following are 8 code examples for showing how to use logging.logProcesses(). These examples are extracted from open source projects. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example.
You may check out the related API usage on the sidebar.
You may also want to check out all available functions/classes of the module
logging
, or try the search function
.
Example 1
Project: oss-ftp Author: aliyun File: log.py License: MIT License | 6 votes |
def config_logging(level=LEVEL, prefix=PREFIX, other_loggers=None): # Little speed up if "%(process)d" not in prefix: logging.logProcesses = False if "%(processName)s" not in prefix: logging.logMultiprocessing = False if "%(thread)d" not in prefix and "%(threadName)s" not in prefix: logging.logThreads = False handler = logging.StreamHandler() handler.setFormatter(LogFormatter()) loggers = [logging.getLogger('pyftpdlib')] if other_loggers is not None: loggers.extend(other_loggers) for logger in loggers: logger.setLevel(level) logger.addHandler(handler)
Example 2
Project: oss-ftp Author: aliyun File: log.py License: MIT License | 6 votes |
def config_logging(level=LEVEL, prefix=PREFIX, other_loggers=None): # Little speed up if "%(process)d" not in prefix: logging.logProcesses = False if "%(processName)s" not in prefix: logging.logMultiprocessing = False if "%(thread)d" not in prefix and "%(threadName)s" not in prefix: logging.logThreads = False handler = logging.StreamHandler() handler.setFormatter(LogFormatter()) loggers = [logging.getLogger('pyftpdlib')] if other_loggers is not None: loggers.extend(other_loggers) for logger in loggers: logger.setLevel(level) logger.addHandler(handler)
Example 3
Project: script-languages Author: exasol File: log.py License: MIT License | 6 votes |
def config_logging(level=LEVEL, prefix=PREFIX, other_loggers=None): # Little speed up if "%(process)d" not in prefix: logging.logProcesses = False if "%(processName)s" not in prefix: logging.logMultiprocessing = False if "%(thread)d" not in prefix and "%(threadName)s" not in prefix: logging.logThreads = False handler = logging.StreamHandler() handler.setFormatter(LogFormatter()) loggers = [logging.getLogger('pyftpdlib')] if other_loggers is not None: loggers.extend(other_loggers) for logger in loggers: logger.setLevel(level) logger.addHandler(handler)
Example 4
Project: Fluid-Designer Author: Microvellum File: test_logging.py License: GNU General Public License v3.0 | 6 votes |
def test_optional(self): r = logging.makeLogRecord({}) NOT_NONE = self.assertIsNotNone if threading: NOT_NONE(r.thread) NOT_NONE(r.threadName) NOT_NONE(r.process) NOT_NONE(r.processName) log_threads = logging.logThreads log_processes = logging.logProcesses log_multiprocessing = logging.logMultiprocessing try: logging.logThreads = False logging.logProcesses = False logging.logMultiprocessing = False r = logging.makeLogRecord({}) NONE = self.assertIsNone NONE(r.thread) NONE(r.threadName) NONE(r.process) NONE(r.processName) finally: logging.logThreads = log_threads logging.logProcesses = log_processes logging.logMultiprocessing = log_multiprocessing
Example 5
Project: python-aspectlib Author: ionelmc File: utils.py License: BSD 2-Clause "Simplified" License | 6 votes |
def logf(logger_func): @wraps(logger_func) def log_wrapper(*args): if DEBUG: logProcesses = logging.logProcesses logThreads = logging.logThreads logMultiprocessing = logging.logMultiprocessing logging.logThreads = logging.logProcesses = logMultiprocessing = False # disable logging pids and tids - we don't want extra calls around, especilly when we monkeypatch stuff try: return logger_func(*args) finally: logging.logProcesses = logProcesses logging.logThreads = logThreads logging.logMultiprocessing = logMultiprocessing return log_wrapper
Example 6
Project: ironpython3 Author: IronLanguages File: test_logging.py License: Apache License 2.0 | 6 votes |
def test_optional(self): r = logging.makeLogRecord({}) NOT_NONE = self.assertIsNotNone if threading: NOT_NONE(r.thread) NOT_NONE(r.threadName) NOT_NONE(r.process) NOT_NONE(r.processName) log_threads = logging.logThreads log_processes = logging.logProcesses log_multiprocessing = logging.logMultiprocessing try: logging.logThreads = False logging.logProcesses = False logging.logMultiprocessing = False r = logging.makeLogRecord({}) NONE = self.assertIsNone NONE(r.thread) NONE(r.threadName) NONE(r.process) NONE(r.processName) finally: logging.logThreads = log_threads logging.logProcesses = log_processes logging.logMultiprocessing = log_multiprocessing
Example 7
Project: Project-New-Reign---Nemesis-Main Author: ShikyoKira File: test_logging.py License: GNU General Public License v3.0 | 6 votes |
def test_optional(self): r = logging.makeLogRecord({}) NOT_NONE = self.assertIsNotNone if threading: NOT_NONE(r.thread) NOT_NONE(r.threadName) NOT_NONE(r.process) NOT_NONE(r.processName) log_threads = logging.logThreads log_processes = logging.logProcesses log_multiprocessing = logging.logMultiprocessing try: logging.logThreads = False logging.logProcesses = False logging.logMultiprocessing = False r = logging.makeLogRecord({}) NONE = self.assertIsNone NONE(r.thread) NONE(r.threadName) NONE(r.process) NONE(r.processName) finally: logging.logThreads = log_threads logging.logProcesses = log_processes logging.logMultiprocessing = log_multiprocessing
Example 8
Project: pyftpdlib Author: giampaolo File: log.py License: MIT License | 6 votes |
def config_logging(level=LEVEL, prefix=PREFIX, other_loggers=None): # Little speed up if "(process)" not in prefix: logging.logProcesses = False if "%(processName)s" not in prefix: logging.logMultiprocessing = False if "%(thread)d" not in prefix and "%(threadName)s" not in prefix: logging.logThreads = False handler = logging.StreamHandler() formatter = LogFormatter() formatter.PREFIX = prefix handler.setFormatter(formatter) loggers = [logging.getLogger('pyftpdlib')] if other_loggers is not None: loggers.extend(other_loggers) for logger in loggers: logger.setLevel(level) logger.addHandler(handler)