Summary
components/bot_detector/proxy_manager/core.py:45 calls print() with a referral message on init. Per code guidelines, should use logger.info().
print(f"To get an API key, please use our referral code: {referral}")
Proposed Change
Replace print() with logger.info().
Summary
components/bot_detector/proxy_manager/core.py:45callsprint()with a referral message on init. Per code guidelines, should uselogger.info().Proposed Change
Replace
print()withlogger.info().