Skip to content

Commit 8e92343

Browse files
committed
Reduce remote debug logging grace period from 15 seconds to 5 seconds
1 parent 324df24 commit 8e92343

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/wardrive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const REMOTE_DEBUG_BATCH_MAX = 100; // Maximum logs per batch
2525
const REMOTE_DEBUG_FLUSH_INTERVAL_MS = 15000; // Flush every 15 seconds
2626
const REMOTE_DEBUG_RATE_LIMIT = 10; // Max logs per second
2727
const REMOTE_DEBUG_RATE_RESET_MS = 1000; // Rate limit reset interval
28-
const REMOTE_DEBUG_GRACE_PERIOD_MS = 15000; // Grace period before rate limiting starts (15 seconds)
28+
const REMOTE_DEBUG_GRACE_PERIOD_MS = 5000; // Grace period before rate limiting starts (15 seconds)
2929

3030
const debugLogQueue = {
3131
messages: [], // Array of {date: <epoch>, message: <string>}

0 commit comments

Comments
 (0)