1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-17 04:30:03 +02:00

ship_processor.go: Print error when encoding fails.

This commit is contained in:
Henrik Hautakoski 2022-01-20 11:22:54 +01:00
parent cd8eae6331
commit bfaaacc3ad
No known key found for this signature in database
GPG key ID: 608414D93E862CCD

View file

@ -42,7 +42,7 @@ func processTraces(traces []*ship.TransactionTraceV0) {
payload, err := json.Marshal(act)
if err != nil {
log.Println("Failed to encode action:")
log.Println("Failed to encode action:", err)
continue
}