Files
loggingbot/config_example.yaml
T

28 lines
757 B
YAML

# LoggingBot Konfiguration
# Kopiere diese Datei zu 'config.yaml' und passe die Werte an
bot:
# Telegram Bot Token (von BotFather erhalten)
token: "YOUR_BOT_TOKEN_HERE"
# Debug-Ausgaben aktivieren/deaktivieren
debug_mode: true
database:
# Name der SQLite-Datenbank
name: "group_monitor.db"
logging:
# Aktiviere Datei-Logging (activity_log.txt)
write_to_file: true
# Dateiname für Aktivitätsprotokolle
file_name: "activity_log.txt"
# Python Logging Level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
level: "INFO"
# Forum-Topic Management
forum_topics:
# Topics, die NICHT automatisch wiedereröffnet werden sollen
# Format: [{"group_id": 123456, "topic_id": "1"}, {"group_id": 123456, "topic_id": "2"}]
not_reopen_topics: []