我正在尝试使用Flask记录器在Flask Web应用上记录所有活动。我知道如何获取此链接中提到的应用程序错误日志
http://flask.pocoo.org/docs/1.0/logging/#logging
此问题是,它仅在我第一次访问本地服务器以启动应用程序时才返回日志。此后不返回任何日志。仅当我更改代码中的某些内容时才更新日志,但登录到应用程序或转到应用程序内的其他选项卡时不会更新日志。如果要获取应用程序内活动的日志,该怎么办?
@app.route("/cis", methods=['GET','POST'])
@login_required
def main():
form = ReusableForm(request.form)
if request.method == 'POST':
if form.validate():
try :
app.logger.info("Reached /cis")
else:
return render_template('cis.html',form=)
例如,如果我想在应用程序中访问“ / cis”时在日志中显示“ Reached / cis”,该怎么办?