Skip to content

Commit e12e5ba

Browse files
committed
syz-cluster: log finished session status
Print a bit more info to the logs to make them more understandable.
1 parent 515987b commit e12e5ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syz-cluster/controller/processor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func (sp *SeriesProcessor) handleSession(ctx context.Context, session *db.Sessio
161161
app.Errorf("failed to start a workflow: %v", err)
162162
}
163163
case workflow.StatusFinished, workflow.StatusFailed:
164-
log.Printf("workflow for %q completed, mark the session finished", session.ID)
164+
log.Printf("workflow for %q completed (status=%q), mark the session finished", session.ID, status)
165165
err := sp.stopRunningTests(ctx, session.ID)
166166
if err != nil {
167167
app.Errorf("failed to check running tests for %s: %v", session.ID, err)

0 commit comments

Comments
 (0)