Add retrieval deal ID and bytes transferred to retrieval output

This commit is contained in:
Rob Quist 2022-09-30 02:43:01 +02:00 committed by GitHub
parent 88a17013dd
commit 66b77be2d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -181,12 +181,14 @@ func retrieve(ctx context.Context, cctx *cli.Context, fapi lapi.FullNode, sel *l
event = retrievalmarket.ClientEvents[*evt.Event] event = retrievalmarket.ClientEvents[*evt.Event]
} }
printf("Recv %s, Paid %s, %s (%s), %s\n", printf("Recv %s, Paid %s, %s (%s), %s [%d|%d]\n",
types.SizeStr(types.NewInt(evt.BytesReceived)), types.SizeStr(types.NewInt(evt.BytesReceived)),
types.FIL(evt.TotalPaid), types.FIL(evt.TotalPaid),
strings.TrimPrefix(event, "ClientEvent"), strings.TrimPrefix(event, "ClientEvent"),
strings.TrimPrefix(retrievalmarket.DealStatuses[evt.Status], "DealStatus"), strings.TrimPrefix(retrievalmarket.DealStatuses[evt.Status], "DealStatus"),
time.Now().Sub(start).Truncate(time.Millisecond), time.Now().Sub(start).Truncate(time.Millisecond),
evt.ID,
types.NewInt(evt.BytesReceived),
) )
switch evt.Status { switch evt.Status {