Merge pull request #294 from timrichardson/issue/1773

replace write to stderr with LOGGER in failed database connection attemp...
This commit is contained in:
mdipierro
2013-11-16 01:24:18 -08:00

View File

@@ -7770,7 +7770,7 @@ class DAL(object):
raise
except Exception:
tb = traceback.format_exc()
sys.stderr.write('DEBUG: connect attempt %i, connection error:\n%s' % (k, tb))
LOGGER.debug('DEBUG: connect attempt %i, connection error:\n%s' % (k, tb))
if connected:
break
else: