In src/fromager/bootstrapper/_bootstrapper.py:770, logging.info() is called instead of logger.info(). This sends the log message to the root logger, bypassing namespace-based log filtering (e.g. filtering by fromager.bootstrapper).
Pre-existing bug from the original monolithic bootstrapper.py (line 1297), surfaced during review of #1226.
Fix: Change logging.info(...) to logger.info(...).
In
src/fromager/bootstrapper/_bootstrapper.py:770,logging.info()is called instead oflogger.info(). This sends the log message to the root logger, bypassing namespace-based log filtering (e.g. filtering byfromager.bootstrapper).Pre-existing bug from the original monolithic
bootstrapper.py(line 1297), surfaced during review of #1226.Fix: Change
logging.info(...)tologger.info(...).