| 1649 | |
| 1650 | # Define ANSI color codes for terminal output |
| 1651 | class Colors: |
| 1652 | CYAN = "\033[96m" |
| 1653 | BLUE = "\033[94m" |
| 1654 | GREEN = "\033[92m" |
| 1655 | YELLOW = "\033[93m" |
| 1656 | RED = "\033[91m" |
| 1657 | MAGENTA = "\033[95m" |
| 1658 | RESET = "\033[0m" |
| 1659 | BOLD = "\033[1m" |
| 1660 | UNDERLINE = "\033[4m" |
| 1661 | DIM = "\033[2m" |
| 1662 | |
| 1663 | |
| 1664 | def log_request_beautifully( |
nothing calls this directly
no outgoing calls
no test coverage detected