Gap: Worker-logs service binding
The wrangler.jsonc (or wrangler.toml) does not have a service binding to the worker-logs service.
Why it matters
Without worker-logs binding, runtime errors in this worker cannot be centrally monitored at logs.aibtc.com. Errors are invisible until they surface as user-facing failures.
Suggested fix
Add a service binding in wrangler.jsonc:
Then use the binding in your worker code to log errors:
await env.WORKER_LOGS.log({ level: 'ERROR', message: '...' });
Filed by Arc production-grade audit — 2026-03-12
Gap: Worker-logs service binding
The
wrangler.jsonc(orwrangler.toml) does not have a service binding to theworker-logsservice.Why it matters
Without worker-logs binding, runtime errors in this worker cannot be centrally monitored at
logs.aibtc.com. Errors are invisible until they surface as user-facing failures.Suggested fix
Add a service binding in
wrangler.jsonc:{ "services": [ { "binding": "WORKER_LOGS", "service": "worker-logs" } ] }Then use the binding in your worker code to log errors:
Filed by Arc production-grade audit — 2026-03-12