is it possible to use ipdb to debug solids?
# announcements
c
is it possible to use ipdb to debug solids?
s
Hey Chris, we have a small util that helps you do this
Copy code
from dagster.utils.pdb import ForkedPdb

@solid
def complex_solid(_):
    # some complicated stuff
    ForkedPdb().set_trace()
    # some other complicated stuff
m
might be nice to put that on the solid execution context tbh
so we have context.pdb.set_trace()
c
that would be amazing
this is great btw