All Samples(462) | Call(0) | Derive(0) | Import(462)
Additional handlers for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved. To use, simply 'import logging.handlers' and log away!
src/d/j/django-navbar-0.3.0/examples/dbgp/_logging/config.py django-navbar(Download)
To use, simply 'import logging' and log away!
"""
import sys, logging, logging.handlers, string, socket, struct, os, traceback
try:
import thread
src/f/i/fileconveyor-HEAD/code/processors/processor_sample.py fileconveyor(Download)
import sys
import os
import os.path
import time
import logging.handlers
sys.path.append(os.path.abspath('..'))
src/z/a/zamboni-lib-HEAD/lib/python/logilab/common/logging_ext.py zamboni-lib(Download)
handler = logging.StreamHandler()
elif logfile is None:
if syslog:
from logging import handlers
handler = handlers.SysLogHandler()
else:
handler = logging.StreamHandler()
src/p/y/python-cuda-HEAD/cuda/utils/logger.py python-cuda(Download)
# Setup logging globally (ie root logger) import types import logging import logging.handlers import platform INFO_NO_NEWLINE = logging.INFO + 1
src/s/t/StarCluster-0.91/starcluster/logger.py StarCluster(Download)
#!/usr/bin/env python """ StarCluster logging module """ import types import logging import logging.handlers
src/s/t/StarCluster-HEAD/starcluster/logger.py StarCluster(Download)
#!/usr/bin/env python """ StarCluster logging module """ import types import logging import logging.handlers
src/l/o/log4py-HEAD/log4py/config.py log4py(Download)
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # import logging, logging.handlers import codecs import sys import os
src/n/a/nagify-HEAD/lib/nagify/log.py nagify(Download)
""" import logging import logging.handlers from os.path import expanduser from config import config
src/a/u/AutoNetkit-0.2.8/AutoNetkit/config.py AutoNetkit(Download)
import logging
import logging.handlers
LEVELS = {'debug': logging.DEBUG,
src/x/p/xpaxs-0.9/xpaxs/__init__.py xpaxs(Download)
import logging from logging import DEBUG, INFO, WARNING, ERROR, CRITICAL import logging.config import logging.handlers import os from xpaxs import config
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next