I tried running an example recipe with python hello.py - and it works perfectly.
However, I can not find any instructions on how to use tracing functionality not as a standalone demonstration, but inside other applications.
A simplest example would be:
hello.py:
from ice.recipe import recipe
async def say_hello():
return "Hello world!"
recipe.main(say_hello)
test.py:
from hello import say_hello
import asyncio
if __name__ == '__main__':
print(asyncio.run(say_hello()))
Which does not work when run with python test.py - no traces being recorded.
Could anyone please point me towards a way to achieve this?