bugfix: Fixed broken log message for Execution finished on websocket (#520)

This commit is contained in:
James Read 2025-02-21 17:56:37 +00:00 committed by GitHub
parent 5cd5bd2a25
commit cae5d296ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ func (WebsocketExecutionListener) OnExecutionFinished(logEntry *executor.Interna
LogEntry: internalLogEntryToPb(logEntry), LogEntry: internalLogEntryToPb(logEntry),
} }
log.Infof("Execution finished: %v+v", evt.LogEntry) log.Infof("WS Execution finished: %v", evt.LogEntry)
broadcast(evt) broadcast(evt)
} }