pre-c8 checkpoint

This commit is contained in:
2024-08-04 04:39:49 -07:00
parent d7a0167cd6
commit eb0f19b109
6 changed files with 34 additions and 17 deletions

View File

@ -26,11 +26,12 @@ if not app.debug:
app.logger.addHandler(mail_handler)
if app.config['DC_LOGGING']:
print('#################### DEBUGHERE', file=sys.stderr)
print('#################### TEST PRINT STDERR DEBUG', file=sys.stderr)
dclog = logging.StreamHandler(stream=sys.stderr)
dclog.setLevel(logging.INFO)
dclog.propagate = False
app.logger.addHandler(dclog)
app.logger.info('@@@@@@@@@@@@@@@@@@@@@ TEST LOGGER INFO MESSAGE')
from app import routes, models, errors