當前位置: 首頁>>代碼示例>>Python>>正文


Python log.set_threshold方法代碼示例

本文整理匯總了Python中distutils.log.set_threshold方法的典型用法代碼示例。如果您正苦於以下問題:Python log.set_threshold方法的具體用法?Python log.set_threshold怎麽用?Python log.set_threshold使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在distutils.log的用法示例。


在下文中一共展示了log.set_threshold方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: setUp

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def setUp(self):
        """Patches the environment."""
        super(PyPIRCCommandTestCase, self).setUp()
        self.tmp_dir = self.mkdtemp()
        os.environ['HOME'] = self.tmp_dir
        self.rc = os.path.join(self.tmp_dir, '.pypirc')
        self.dist = Distribution()

        class command(PyPIRCCommand):
            def __init__(self, dist):
                PyPIRCCommand.__init__(self, dist)
            def initialize_options(self):
                pass
            finalize_options = initialize_options

        self._cmd = command
        self.old_threshold = set_threshold(WARN) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:19,代碼來源:test_config.py

示例2: test_non_ascii

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def test_non_ascii(self):
        # Issue #8663: test that non-ASCII text is escaped with
        # backslashreplace error handler (stream use ASCII encoding and strict
        # error handler)
        old_stdout = sys.stdout
        old_stderr = sys.stderr
        old_threshold = log.set_threshold(log.DEBUG)
        try:
            with NamedTemporaryFile(mode="w+", encoding='ascii') as stdout, \
                 NamedTemporaryFile(mode="w+", encoding='ascii') as stderr:
                sys.stdout = stdout
                sys.stderr = stderr
                log.debug("debug:\xe9")
                log.fatal("fatal:\xe9")
                stdout.seek(0)
                self.assertEqual(stdout.read().rstrip(), "debug:\\xe9")
                stderr.seek(0)
                self.assertEqual(stderr.read().rstrip(), "fatal:\\xe9")
        finally:
            log.set_threshold(old_threshold)
            sys.stdout = old_stdout
            sys.stderr = old_stderr 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:24,代碼來源:test_log.py

示例3: setUp

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def setUp(self):
        """Patches the environment."""
        super(BasePyPIRCCommandTestCase, self).setUp()
        self.tmp_dir = self.mkdtemp()
        os.environ['HOME'] = self.tmp_dir
        self.rc = os.path.join(self.tmp_dir, '.pypirc')
        self.dist = Distribution()

        class command(PyPIRCCommand):
            def __init__(self, dist):
                PyPIRCCommand.__init__(self, dist)
            def initialize_options(self):
                pass
            finalize_options = initialize_options

        self._cmd = command
        self.old_threshold = set_threshold(WARN) 
開發者ID:CedricGuillemet,項目名稱:Imogen,代碼行數:19,代碼來源:test_config.py

示例4: setUp

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def setUp(self):
        """Patches the environment."""
        super(BasePyPIRCCommandTestCase, self).setUp()
        self.tmp_dir = self.mkdtemp()
        os.environ['HOME'] = self.tmp_dir
        os.environ['USERPROFILE'] = self.tmp_dir
        self.rc = os.path.join(self.tmp_dir, '.pypirc')
        self.dist = Distribution()

        class command(PyPIRCCommand):
            def __init__(self, dist):
                PyPIRCCommand.__init__(self, dist)
            def initialize_options(self):
                pass
            finalize_options = initialize_options

        self._cmd = command
        self.old_threshold = set_threshold(WARN) 
開發者ID:pypa,項目名稱:setuptools,代碼行數:20,代碼來源:test_config.py

示例5: show_all

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def show_all(argv=None):
    import inspect
    if argv is None:
        argv = sys.argv
    opts, args = parseCmdLine(argv)
    if opts.verbose:
        log.set_threshold(log.DEBUG)
    else:
        log.set_threshold(log.INFO)
    show_only = []
    for n in args:
        if n[-5:] != '_info':
            n = n + '_info'
        show_only.append(n)
    show_all = not show_only
    _gdict_ = globals().copy()
    for name, c in _gdict_.items():
        if not inspect.isclass(c):
            continue
        if not issubclass(c, system_info) or c is system_info:
            continue
        if not show_all:
            if name not in show_only:
                continue
            del show_only[show_only.index(name)]
        conf = c()
        conf.verbosity = 2
        # FIXME: r not used
        r = conf.get_info()
    if show_only:
        log.info('Info classes not defined: %s', ','.join(show_only)) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:33,代碼來源:system_info.py

示例6: show_all

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def show_all(argv=None):
    import inspect
    if argv is None:
        argv = sys.argv
    opts, args = parseCmdLine(argv)
    if opts.verbose:
        log.set_threshold(log.DEBUG)
    else:
        log.set_threshold(log.INFO)
    show_only = []
    for n in args:
        if n[-5:] != '_info':
            n = n + '_info'
        show_only.append(n)
    show_all = not show_only
    _gdict_ = globals().copy()
    for name, c in _gdict_.items():
        if not inspect.isclass(c):
            continue
        if not issubclass(c, system_info) or c is system_info:
            continue
        if not show_all:
            if name not in show_only:
                continue
            del show_only[show_only.index(name)]
        conf = c()
        conf.verbosity = 2
        r = conf.get_info()
    if show_only:
        log.info('Info classes not defined: %s', ','.join(show_only)) 
開發者ID:ryfeus,項目名稱:lambda-packs,代碼行數:32,代碼來源:system_info.py

示例7: setUp

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def setUp(self):
        super(CoreTestCase, self).setUp()
        self.old_stdout = sys.stdout
        self.cleanup_testfn()
        self.old_argv = sys.argv, sys.argv[:]
        self.addCleanup(log.set_threshold, log._global_log.threshold) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:8,代碼來源:test_core.py

示例8: tearDown

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def tearDown(self):
        """Removes the patch."""
        set_threshold(self.old_threshold)
        super(PyPIRCCommandTestCase, self).tearDown() 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:test_config.py

示例9: setUp

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def setUp(self):
        super(LoggingSilencer, self).setUp()
        self.threshold = log.set_threshold(log.FATAL)
        # catching warnings
        # when log will be replaced by logging
        # we won't need such monkey-patch anymore
        self._old_log = log.Log._log
        log.Log._log = self._log
        self.logs = [] 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:11,代碼來源:support.py

示例10: tearDown

# 需要導入模塊: from distutils import log [as 別名]
# 或者: from distutils.log import set_threshold [as 別名]
def tearDown(self):
        log.set_threshold(self.threshold)
        log.Log._log = self._old_log
        super(LoggingSilencer, self).tearDown() 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:support.py


注:本文中的distutils.log.set_threshold方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。