mirror of
https://github.com/wallabag/wallabag.git
synced 2026-03-21 11:32:35 +01:00
In always-on debug mode (start_with_request=yes, the default), every PHP invocation attempts to connect to the IDE debugger and logs an error when nothing is listening. This pollutes terminal output during normal development. Switch to trigger mode so XDebug only initiates a debug session when explicitly requested: - CLI: prefix commands with XDEBUG_TRIGGER=1 - Web: set the XDEBUG_TRIGGER cookie or query parameter (use the Xdebug Helper browser extension for convenience) Also remove XDEBUG_TRIGGER=yes from the env file. That line set the trigger env var unconditionally, which would have caused XDebug to always fire even in trigger mode.