Hi! I have multiple jobs that takes a lot of time ...
# ask-community
p
Hi! I have multiple jobs that takes a lot of time to finish (could be up to an hour for a job) is there a way I can add some sort of a status bar for a job so I can understand if it's progressing? or alternatively, update a log message for completion percentage of the job? ``````
c
It should be possible to construct a python logger to do this according to this thread, but you would need to create a custom dagster logger to take advantage of it. Check out the docs on doing this: https://docs.dagster.io/concepts/logging/loggers#customizing-loggers
❤️ 1