Clean up log print statement that was left behind

This commit is contained in:
Thomas S Hatch 2013-03-25 23:32:14 -06:00
parent 0ccdccfce2
commit 7a34acedc8

View File

@ -252,14 +252,11 @@ def setup_temp_logger(log_level='error'):
Setup the temporary console logger
'''
if is_temp_logging_configured():
print 2222
logging.getLogger(__name__).warn(
'Temporary logging is already configured'
)
return
print 1111
# Remove the temporary null logging handler
__remove_null_logging_handler()