From f27afac77b479082e891e5095c22ca09f149cede Mon Sep 17 00:00:00 2001 From: c9s Date: Wed, 4 Sep 2024 11:20:30 +0800 Subject: [PATCH] max: use error log instead of warning log for convertion --- pkg/exchange/max/convert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/exchange/max/convert.go b/pkg/exchange/max/convert.go index 3f561b543..7c23f9b69 100644 --- a/pkg/exchange/max/convert.go +++ b/pkg/exchange/max/convert.go @@ -295,7 +295,7 @@ func toGlobalDepositStatus(a max.DepositState) types.DepositStatus { // other states goes to this // max.DepositStateSuspect, max.DepositStateSuspended - log.Warnf("unsupported deposit state %q from max exchange", a) + log.Errorf("unsupported deposit state %q from max exchange", a) return types.DepositStatus(a) }