style: replace print() with logger.error() in gpu_worker.py
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Has been cancelled
Coverage Phase 1 (70% Target) / test-coverage-70 (push) Has been cancelled
Coverage Phase 2 (85% Target) / test-coverage-85 (push) Has been cancelled
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Production Tests / Production Integration Tests (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

- Changed print() in __main__ block to logger.error()
- Maintains proper logging pattern for CLI usage messages
This commit is contained in:
aitbc
2026-05-25 13:10:33 +02:00
parent d02ce816a9
commit b9b70923d5

View File

@@ -449,7 +449,7 @@ if __name__ == "__main__":
import sys
if len(sys.argv) < 3:
print("Usage: python gpu_worker.py <worker_id> <api_key> [coordinator_url]")
logger.error("Usage: python gpu_worker.py <worker_id> <api_key> [coordinator_url]")
sys.exit(1)
worker_id = sys.argv[1]