Skip to content

Commit 9f12afa

Browse files
committed
fix test
1 parent 57efa98 commit 9f12afa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

grogu/feed/query.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ func QuerySignalIDs(c *grogucontext.Context, signalIDsWithTimeLimit map[string]t
6767
price, err := strconv.ParseFloat(strings.TrimSpace(priceData.Price), 64)
6868
if err != nil || price > float64(maxSafePrice) || price < 0 {
6969
c.Logger.Error(
70-
":exploding_head: Failed to parse price from signal id: %s with err: %s",
70+
":exploding_head: Failed to parse price from signal id: %s with err: %v",
7171
priceData.SignalId,
72-
err.Error(),
72+
err,
7373
)
7474
priceData.PriceStatus = bothanproto.PriceStatus_PRICE_STATUS_UNAVAILABLE
7575
priceData.Price = ""

0 commit comments

Comments
 (0)