Lines Matching refs:logging
33 import logging
44 log = logging.getLogger(__name__)
137 Set up logging from the command line options
139 root_logger = logging.getLogger()
142 formatter = logging.Formatter("%(asctime)s %(levelname)-5.5s %(message)s")
148 handler.setLevel(logging.DEBUG)
156 root_logger.setLevel(logging.DEBUG)
159 root_logger.setLevel(logging.INFO)
162 stdout_handler = logging.StreamHandler(sys.stdout)
164 stdout_handler.setLevel(logging.DEBUG)
183 # Setup logging using the user options