From 6809f15ccda94d2dec863ed3ddefd9778e8d1625 Mon Sep 17 00:00:00 2001 From: oberon Date: Mon, 16 Feb 2026 19:14:17 +0100 Subject: [PATCH] next fixxes --- app/routes/main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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