async def try_catch(coro): try: return await coro except Exception as e: print(f"[ERROR] {coro} failed: {e}")