diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2682493..66b6d28 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,13 @@ All notable changes to the KoalaSync browser extension and relay server.
---
+## [v2.0.7] — 2026-06-03
+
+### Added
+- Added a `DEBUG_LOGGING` environment variable to the relay server (defaulting to `"0"` / disabled) to prevent console spam from verbose connection (`CONN`), room activity (`ROOM`, `DEDUPE`), and `CORS` events under load. Critical logs like `SERVER`, `SECURITY`, `AUTH`, and `ERROR` remain enabled at all times.
+
+---
+
## [v2.0.6] — 2026-06-03
### Performance & Security Hardening
diff --git a/README.md b/README.md
index a9f5e2f..d0c0304 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@
New v2.0.6 Release! — See what's changed
+New v2.0.7 Release! — See what's changed
KoalaSync is a lightweight Browser Extension and Relay Server for synchronized video playback on almost any website with a video element—YouTube, Twitch, Netflix, Emby, Jellyfin, and beyond. Built with a focus on Data Sovereignty and Performance.
diff --git a/server/.env.example b/server/.env.example index 310e833..8f38ee5 100644 --- a/server/.env.example +++ b/server/.env.example @@ -6,3 +6,5 @@ MAX_PEERS_PER_ROOM="25" # Use a long random token, 32+ characters recommended. ADMIN_METRICS_TOKEN="" +# Optional: set to "1" to enable verbose connection, room-join/leave, and CORS logs in the console. Default is "0" (disabled). +DEBUG_LOGGING="0" diff --git a/server/README.md b/server/README.md index 42bc0aa..2db50dd 100644 --- a/server/README.md +++ b/server/README.md @@ -12,13 +12,16 @@ A Node.js relay server for synchronized video playback. ### Environment Copy `.env.example` to `.env` and configure your settings. ```bash -PORT=3000 -MAX_ROOMS=1000 -MAX_PEERS_PER_ROOM=25 -MIN_VERSION=1.0.0 +PORT="3000" +MAX_ROOMS="1000" +MAX_PEERS_PER_ROOM="25" +MIN_VERSION="1.0.0" # Optional: enables aggregate-only admin metrics on /health with Authorization: Bearer










