print() statements used instead of proper logging
π Description
Some parts of the code use print() statements instead of structured logging.
π· Proof
π Code Reference
Example:
print(f"CORS allowed origins: {allowed_origins}")
β Problem
- Not suitable for production
- No log levels (info, error, debug)
- Hard to monitor and debug
β
Expected Behavior
- Use proper logging (
logger.info, logger.error)
π·οΈ Labels
backend, cleanup
print() statements used instead of proper logging
π Description
Some parts of the code use
print()statements instead of structured logging.π· Proof
π Code Reference
Example:
print(f"CORS allowed origins: {allowed_origins}")β Problem
β Expected Behavior
logger.info,logger.error)π·οΈ Labels
backend, cleanup