Skip to content

Commit

Permalink
chore: set keep lease heartbeat log level to trace (#1364)
Browse files Browse the repository at this point in the history
Co-authored-by: paomian <[email protected]>
  • Loading branch information
paomian and paomian authored Apr 12, 2023
1 parent 6b6617f commit ae21c1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meta-srv/src/handler/keep_lease_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

use api::v1::meta::{BatchPutRequest, HeartbeatRequest, KeyValue};
use common_telemetry::{info, warn};
use common_telemetry::{trace, warn};
use common_time::util as time_util;
use tokio::sync::mpsc::{self, Sender};

Expand Down Expand Up @@ -76,7 +76,7 @@ impl HeartbeatHandler for KeepLeaseHandler {
node_addr: peer.addr.clone(),
};

info!("Receive a heartbeat: {key:?}, {value:?}");
trace!("Receive a heartbeat: {key:?}, {value:?}");

let key = key.try_into()?;
let value = value.try_into()?;
Expand Down

0 comments on commit ae21c1c

Please sign in to comment.