Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/rq-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ILoggerService from "./components/interfaces/logger-service";
import IInitialState from "./components/interfaces/state";
import GlobalStateProvider, {State} from "./components/proxy-middleware/middlewares/state";


console.log("Testing");
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove debug console.log statement before merging.

The console.log("Testing") statement appears to be leftover debug code executed during module initialization. This will pollute stdout every time the module is imported and should be removed.

🤖 Prompt for AI Agents
In @src/rq-proxy.ts around line 10, Remove the leftover debug console.log by
deleting the top-level console.log("Testing") statement in the module
initialization of src/rq-proxy.ts so the module no longer prints to stdout on
import; locate the stray console.log call and remove it (no replacement needed).

class RQProxy {
proxy: any;
proxyMiddlewareManager!: ProxyMiddlewareManager;
Expand Down
Loading