Remove unnecessary debug logging from officer images

This commit is contained in:
Cara Salter 2024-04-03 18:50:19 +11:00
parent 88d2c36511
commit 663655b125
No known key found for this signature in database
GPG key ID: A8A3A601440EADA5

View file

@ -23,8 +23,6 @@ def join():
@bp.route("/officers/<path:username>") @bp.route("/officers/<path:username>")
def officer_images(username): def officer_images(username):
print(current_app.config["UPLOAD_FOLDER"])
print(username)
return send_from_directory(current_app.config["UPLOAD_FOLDER"], username) return send_from_directory(current_app.config["UPLOAD_FOLDER"], username)