Skip to content

Commit 3dfba9f

Browse files
committed
Cleanup unnecessary traces.
1 parent d9b0127 commit 3dfba9f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/builder/analyzed_flow.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use crate::{
1010
};
1111
use anyhow::Result;
1212
use futures::{future::Shared, FutureExt};
13-
use log::trace;
1413

1514
pub struct AnalyzedFlow {
1615
pub flow_instance: spec::FlowInstanceSpec,
@@ -56,15 +55,13 @@ impl AnalyzedFlow {
5655
}
5756

5857
pub async fn get_execution_plan(&self) -> Result<Arc<plan::ExecutionPlan>> {
59-
trace!("get_execution_plan() started");
6058
let execution_plan = self
6159
.execution_plan
6260
.as_ref()
6361
.ok_or_else(|| api_error!("Flow setup is not up to date. Please run `cocoindex setup` to update the setup."))?
6462
.clone()
6563
.await
6664
.std_result()?;
67-
trace!("get_execution_plan() finished");
6865
Ok(execution_plan)
6966
}
7067
}

0 commit comments

Comments
 (0)