From 95f96f639ef92f62b84b37660c15e7376d5e8cb4 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 20:07:18 +0100 Subject: [PATCH] change error log to debug (#7398) (#7412) (cherry picked from commit 10b30485f242e5a04a5643c6302bf18f186666be) Co-authored-by: Adam Tucker --- x/protorev/keeper/rebalance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/protorev/keeper/rebalance.go b/x/protorev/keeper/rebalance.go index 075aa9911c1..697aed7ce7e 100644 --- a/x/protorev/keeper/rebalance.go +++ b/x/protorev/keeper/rebalance.go @@ -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 }