Skip to content

Commit

Permalink
add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
zale144 committed Jan 1, 2025
1 parent d814e45 commit df835db
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions eibc/order_poller.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ func (p *orderPoller) getRollappDemandOrdersFromIndexer(ctx context.Context, rol
}

queryStr := fmt.Sprintf(rollappOrdersQuery, p.chainID, fmt.Sprint(p.lastBlockHeight.Load()), rollappId, lastFinalizedHeight)

p.logger.Debug("querying demand orders", zap.String("query", queryStr))

body := strings.NewReader(queryStr)

resp, err := p.indexerClient.Post(p.indexerURL, "application/json", body)
Expand Down

0 comments on commit df835db

Please sign in to comment.