From a453d36a8340327b98cbdb8540d7f49b52b3007d Mon Sep 17 00:00:00 2001 From: obdev Date: Wed, 28 Dec 2022 04:38:09 +0000 Subject: [PATCH] adjust log level of switch_to_follower_gracefully --- src/storage/tx/ob_trans_ctx_mgr_v4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/tx/ob_trans_ctx_mgr_v4.cpp b/src/storage/tx/ob_trans_ctx_mgr_v4.cpp index c5e0ae6bd..8123a5787 100644 --- a/src/storage/tx/ob_trans_ctx_mgr_v4.cpp +++ b/src/storage/tx/ob_trans_ctx_mgr_v4.cpp @@ -833,7 +833,7 @@ int ObLSTxCtxMgr::switch_to_follower_gracefully() timeguard.click(); TRANS_LOG(INFO, "[LsTxCtxMgr] switch_to_follower_gracefully", K(ret), KPC(this), K(process_count)); if (timeguard.get_diff() > 1000000) { - TRANS_LOG(ERROR, "use too much time", K(timeguard), K(process_count)); + TRANS_LOG(WARN, "use too much time", K(timeguard), K(process_count)); } return ret; }