We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06f4f92 commit 324df24Copy full SHA for 324df24
1 file changed
content/wardrive.js
@@ -198,7 +198,7 @@ function startRemoteDebugTimers() {
198
// Log when grace period expires (once at 15 seconds)
199
const elapsed = Date.now() - debugLogQueue.startupTimestamp;
200
if (elapsed >= REMOTE_DEBUG_GRACE_PERIOD_MS && elapsed < (REMOTE_DEBUG_GRACE_PERIOD_MS + REMOTE_DEBUG_RATE_RESET_MS)) {
201
- originalConsoleLog('[REMOTE DEBUG] Grace period ended - rate limiting now active (30 logs/sec)');
+ originalConsoleLog(`[REMOTE DEBUG] Grace period ended - rate limiting now active (${REMOTE_DEBUG_RATE_LIMIT} logs/sec)`);
202
}
203
}, REMOTE_DEBUG_RATE_RESET_MS);
204
0 commit comments