is there a way to run daft in "quiet" mode, disabl...
# general
y
is there a way to run daft in "quiet" mode, disable the progress bars in the output?
k
Hi Yuri, you could try setting the logging level:
Copy code
import logging
logging.getLogger("daft").setLevel(logging.DEBUG)
c
you can also try
export DAFT_PROGRESS_BAR=0