Remove unneded logging

This commit is contained in:
Andreas Thienemann 2022-02-27 02:45:44 +01:00
parent 46da7600ef
commit 0ca167993e

3
app.py
View File

@ -38,9 +38,6 @@ nav.register_element("frontend_top", Navbar(View("Tasmota SML Decoder", ".index"
@app.route("/") @app.route("/")
def index(): def index():
logger.info(
f'{request.remote_addr} - - - "{request.method} {request.path} {request.scheme}"'
)
return render_template("index.html") return render_template("index.html")