Skip to content

Commit

Permalink
change error log to debug (#7398) (#7412)
Browse files Browse the repository at this point in the history
(cherry picked from commit 10b3048)

Co-authored-by: Adam Tucker <[email protected]>
  • Loading branch information
mergify[bot] and czarcas7ic authored Feb 5, 2024
1 parent 22f1121 commit 95f96f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/protorev/keeper/rebalance.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (k Keeper) IterateRoutes(ctx sdk.Context, routes []RouteMetaData, remaining
// Find the max profit for the route if it exists
inputCoin, profit, err := k.FindMaxProfitForRoute(ctx, routes[index], remainingTxPoolPoints, remainingBlockPoolPoints)
if err != nil {
k.Logger(ctx).Error("Error finding max profit for route: " + err.Error())
k.Logger(ctx).Debug("Error finding max profit for route: " + err.Error())
continue
}

Expand Down

0 comments on commit 95f96f6

Please sign in to comment.