- Fix WebSocket server to properly broadcast logs to all connected clients - Integrate professional logging system with real-time WebSocket interface - Add network status indicator with DigitalOcean Spaces connectivity - Implement AWS Signature V4 authentication for private bucket access - Add JSON content loader with backward compatibility to JS modules - Restore navigation breadcrumb system with comprehensive logging - Add multiple content formats: JSON + JS with automatic discovery - Enhance top bar with logger toggle and network status indicator - Remove deprecated temp-games module and clean up unused files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
// lib/trace-wrap.js
|
|
const { tracer } = require('./trace.js');
|
|
|
|
const traced = (name, fn, attrs) => (...args) =>
|
|
tracer.run(name, () => fn(...args), attrs);
|
|
|
|
module.exports = {
|
|
traced
|
|
}; |