Skip to content

Commit f7e5bd1

Browse files
authored
minor: change log level (#1340)
1 parent 917741a commit f7e5bd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ballista/executor/src/cpu_bound_executor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//! This module contains a dedicated thread pool for running "cpu
2121
//! intensive" workloads as query plans
2222
23-
use log::warn;
23+
use log::{debug, warn};
2424
use parking_lot::Mutex;
2525
use std::{pin::Pin, sync::Arc};
2626
use tokio::sync::oneshot::Receiver;
@@ -146,7 +146,7 @@ impl DedicatedExecutor {
146146
let job = Box::pin(async move {
147147
let task_output = task.await;
148148
if tx.send(task_output).is_err() {
149-
warn!("Spawned task output ignored: receiver dropped");
149+
debug!("Spawned task output ignored: receiver dropped");
150150
}
151151
});
152152

0 commit comments

Comments
 (0)