Event logging

This commit is contained in:
2025-12-29 06:01:04 +02:00
parent 2b1b77334a
commit 09a12560d3
11 changed files with 733 additions and 13 deletions

View File

@@ -78,5 +78,23 @@
"mode": "link",
"base_url": "http://localhost:8080"
},
"database": {
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "whatshooked",
"password": "your_password_here",
"database": "whatshooked",
"sqlite_path": "./data/events.db"
},
"event_logger": {
"enabled": false,
"targets": [
"file",
"sqlite"
],
"file_dir": "./data/events",
"table_name": "event_logs"
},
"log_level": "info"
}