0

How can I track process/task execution in viewflow with logger?

In the docs is mentioned:

In case if you need to track some execution info or add logging, you can do it by extending viewflow.models.Task

I could not find any example or more detailed documentation for logging in django-viewflow though.

1 Answers1

1

The task models itself tracks all flow execution history and timestamps. If you need an additional info you could store it inside task.data JSON field

kmmbvnr
  • 5,863
  • 4
  • 35
  • 44