also show skipped tasks in the simplified log w/ burnettk
This commit is contained in:
parent
738cee1fb0
commit
f5ce926ad3
|
@ -181,7 +181,12 @@ def process_instance_log_list(
|
||||||
SpiffLoggingModel.process_instance_id == process_instance.id
|
SpiffLoggingModel.process_instance_id == process_instance.id
|
||||||
)
|
)
|
||||||
if not detailed:
|
if not detailed:
|
||||||
log_query = log_query.filter(SpiffLoggingModel.message.in_(["State change to COMPLETED"])) # type: ignore
|
log_query = log_query.filter(
|
||||||
|
or_(
|
||||||
|
SpiffLoggingModel.message.in_(["State change to COMPLETED"]), # type: ignore
|
||||||
|
SpiffLoggingModel.message.like("Skipped task %"), # type: ignore
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
logs = (
|
logs = (
|
||||||
log_query.order_by(SpiffLoggingModel.timestamp.desc()) # type: ignore
|
log_query.order_by(SpiffLoggingModel.timestamp.desc()) # type: ignore
|
||||||
|
|
Loading…
Reference in New Issue