File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 2424app = Flask (__name__ )
2525
2626# Application version (major,minor,patch-level)
27- version = "1.1.6 "
27+ version = "1.1.7 "
2828
2929"""
3030Change Log
3131
32+ 1.1.7 Update application logging to separate application events from
33+ those logged by the uwsgi servivce
34+
32351.1.6 Add email address detail for various authentication failures
3336
34371.1.5 Refactor _convert_email_uri(email) to properly handle a null
8386 'bucket.email-confirm.freq' : '1800000'
8487}
8588
86- logging .basicConfig (level = logging .DEBUG )
89+
90+ # Set up Cloud Session application log details. The user account that
91+ # this application runs under must have create and write permissions to
92+ # the /var/log/supervisor/ folder.
93+ # ----------------------------------------------------------------------
94+ logging .basicConfig (level = logging .DEBUG ,
95+ format = '%(asctime)s %(levelname)s %(message)s' ,
96+ filename = '/var/log/supervisor/cloud-session-app.log' ,
97+ filemode = 'w' )
8798logging .info ('Log level set to %s' , 'DEBUG' )
8899logging .info ('Starting Cloud Session Service v%s' , version )
89100
You can’t perform that action at this time.
0 commit comments