~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/main.py

  • Committer: John Arbash Meinel
  • Date: 2010-05-12 14:30:00 UTC
  • mto: This revision was merged to the branch mainline in revision 432.
  • Revision ID: john@arbash-meinel.com-20100512143000-lttzxa8k0gnqnn86
Remove start/stop-loggerhead and trace.py which was only used there

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    return config, base
57
57
 
58
58
 
59
 
def setup_logging(config, init_logging=True, log_file=None):
60
 
    log_level = config.get_log_level()
61
 
    if init_logging:
62
 
        logging.basicConfig()
63
 
        if log_level is not None:
64
 
            logging.getLogger('').setLevel(log_level)
 
59
def setup_logging(config):
 
60
    logging.basicConfig()
 
61
    logging.getLogger('').setLevel(logging.DEBUG)
65
62
    logger = logging.getLogger('loggerhead')
66
 
    if log_level is not None:
67
 
        logger.setLevel(log_level)
68
 
    if log_file is not None:
69
 
        handler = logging.StreamHandler(log_file)
 
63
    if config.get_option('log_folder'):
 
64
        logfile_path = os.path.join(
 
65
            config.get_option('log_folder'), 'serve-branches.log')
70
66
    else:
71
 
        if config.get_option('log_folder'):
72
 
            logfile_path = os.path.join(
73
 
                config.get_option('log_folder'), 'serve-branches.log')
74
 
        else:
75
 
            logfile_path = 'serve-branches.log'
76
 
        handler = logging.FileHandler(logfile_path, 'a')
77
 
        formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(name)s:'
78
 
                                      ' %(message)s')
79
 
        handler.setFormatter(formatter)
80
 
    # We set the handler to accept all messages, the *logger* won't emit them
81
 
    # if it is configured to suppress it
82
 
    handler.setLevel(logging.DEBUG)
83
 
    logger.addHandler(handler)
84
 
    def _restrict_logging(logger_name):
85
 
        logger = logging.getLogger(logger_name)
86
 
        if logger.getEffectiveLevel() < logging.INFO:
87
 
            logger.setLevel(logging.INFO)
88
 
    # simpleTAL is *very* verbose in DEBUG mode, which is otherwise the
89
 
    # default. So quiet it up a bit.
90
 
    _restrict_logging('simpleTAL')
91
 
    _restrict_logging('simpleTALES')
 
67
        logfile_path = 'serve-branches.log'
 
68
    logfile = logging.FileHandler(logfile_path, 'a')
 
69
    formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(name)s:'
 
70
                                  ' %(message)s')
 
71
    logfile.setFormatter(formatter)
 
72
    logfile.setLevel(logging.DEBUG)
 
73
    logger.addHandler(logfile)
92
74
    return logger
93
75
 
94
76