diff --git a/app/routes/main.py b/app/routes/main.py index de1cbf9..cca8c0f 100644 --- a/app/routes/main.py +++ b/app/routes/main.py @@ -1,4 +1,6 @@ # app/routes/main.py +import os + from flask import Blueprint, render_template, redirect, url_for, request, jsonify, send_from_directory, current_app from app.utils.helpers import load_configs, load_default_sounds from app.state import current_config, reset_state @@ -69,4 +71,6 @@ def soundboard(): sounds = current_config.get('sounds', []) return render_template('soundboard.html', sounds=sounds, config=current_config) - pass \ No newline at end of file + pass + +logger.info(f"Config geladen: {filename} mit {len(current_config.get('channels', []))} Kanälen") \ No newline at end of file