Revert "Funnel debug logging through nose properly."
This fixes bug 1015613
This reverts commit 95fb6e5f89
.
Change-Id: I827475c86d6f9166c0ee3ba9b0cc9a0a5105c049
This commit is contained in:
parent
a1fbd0baa6
commit
f07a4db6cd
@ -20,12 +20,10 @@
|
||||
import __builtin__
|
||||
setattr(__builtin__, '_', lambda x: x)
|
||||
|
||||
import logging
|
||||
import sys
|
||||
|
||||
# Set up logging to output debugging
|
||||
import logging
|
||||
logger = logging.getLogger()
|
||||
hdlr = logging.StreamHandler(sys.stdout)
|
||||
hdlr = logging.FileHandler('run_tests.log', 'w')
|
||||
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
|
||||
hdlr.setFormatter(formatter)
|
||||
logger.addHandler(hdlr)
|
||||
|
Loading…
Reference in New Issue
Block a user