(self, msg, *args)
| 29 | """Mock logger for testing.""" |
| 30 | def debug(self, msg, *args): print(f"[DEBUG] {msg % args if args else msg}") |
| 31 | def info(self, msg, *args): print(f"[INFO] {msg % args if args else msg}") |
| 32 | def warning(self, msg, *args): print(f"[WARN] {msg % args if args else msg}") |
| 33 | def error(self, msg, *args): print(f"[ERROR] {msg % args if args else msg}") |
| 34 | def close_on_exec(self): pass |
no outgoing calls
no test coverage detected