Add WUMING_VERBOSE debug logging #42
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When WUMING_VERBOSE=true, set the wuming logger to DEBUG level. Each backend (deepseek, anthropic, ollama) emits debug log lines containing the full LLM request payload and raw response text before parsing.
After load_config() in _main(), add: if config.verbose: logging.getLogger('wuming').setLevel(logging.DEBUG). Add a module-level logger and two logger.debug() calls (llm_request, llm_response) to each of deepseek.py, anthropic.py, ollama.py. No constructor changes needed.