Force cherrypy.log.screen to be True to enable normal logging
[cascardo/ipsilon.git] / ipsilon / ipsilon
index c62a9aa..db82e7a 100755 (executable)
@@ -33,6 +33,10 @@ cfgfile = find_config()
 cherrypy.lib.sessions.SqlSession = ipsilon.util.sessions.SqlSession
 cherrypy.config.update(cfgfile)
 
+# Force cherrypy logging to work. Note that this ignores the config-file
+# setting.
+cherrypy.log.screen = True
+
 nuke_session_locks()
 
 datastore = AdminStore()