Skip to content
Snippets Groups Projects
Commit b28070b6 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Reduce debug messages

parent 260fec8b
No related branches found
No related tags found
No related merge requests found
...@@ -164,7 +164,6 @@ def logs(): ...@@ -164,7 +164,6 @@ def logs():
files = OrderedDict() files = OrderedDict()
for filename in sorted(glob(join(app.root_path, LOGS_PATH, "MSG*.log"))): for filename in sorted(glob(join(app.root_path, LOGS_PATH, "MSG*.log"))):
files[basename(filename)] = getsize(filename) files[basename(filename)] = getsize(filename)
print(files)
return render_template('logs.html', files=files) return render_template('logs.html', files=files)
...@@ -179,8 +178,8 @@ def custom_static_logfile(filename): ...@@ -179,8 +178,8 @@ def custom_static_logfile(filename):
@app.route('/plots/<path:filename>') @app.route('/plots/<path:filename>')
@requires_auth @requires_auth
def custom_static(filename): def custom_static(filename):
filepath = join(app.root_path, PLOTS_PATH) # filepath = join(app.root_path, PLOTS_PATH)
print("Serving: {}/{}".format(filepath, filename)) # print("Serving: {}/{}".format(filepath, filename))
return send_from_directory(join(app.root_path, PLOTS_PATH), filename) return send_from_directory(join(app.root_path, PLOTS_PATH), filename)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment