Skip to content

Commit cbb34f3

Browse files
committed
downgrade heartbeat log to trace
1 parent a6c734c commit cbb34f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • crates/arroyo-worker/src

crates/arroyo-worker/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ use tokio::select;
4141
use tokio::sync::mpsc::{Receiver, Sender, channel};
4242
use tokio_stream::wrappers::TcpListenerStream;
4343
use tonic::{Request, Response, Status};
44-
use tracing::{debug, error, info, warn};
44+
use tracing::{debug, error, info, trace, warn};
4545

4646
use crate::job_controller::controller::WorkerJobController;
4747
use crate::utils::{MAX_TASK_ERROR_FIELD_BYTES, maybe_truncate, to_d2};
@@ -1349,7 +1349,7 @@ impl JobControllerGrpc for LeaderServer {
13491349

13501350
self.validate_req(req.worker_context.as_ref())?;
13511351

1352-
debug!(
1352+
trace!(
13531353
worker_id =? self.state.worker_context.worker_id,
13541354
?req,
13551355
"received heartbeat",

0 commit comments

Comments
 (0)