b5b150a773
* fix: replace print() with logger in classic_rag.py and encryption.py Three print() calls bypassed the structured logging system, risking exposure of rephrased user queries and credential error details to unmanaged stdout. Replace with logger.debug() / logger.warning() and add a module-level logger to both files. Also migrate all bare logging.xxx() calls in classic_rag.py to the module-level logger for consistency. * (chore:encryption.py) ruff --------- Co-authored-by: ManishMadan2882 <manishmadan321@gmail.com>