Skip to content

Commit

Permalink
fix(cubestore): Reduce too verbose logging on slow queries
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed Feb 26, 2021
1 parent 88fcee2 commit 1d62a47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/cubestore/src/queryplanner/query_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl QueryExecutor for QueryExecutorImpl {
execution_time.elapsed()?,
plan_to_move
);
info!(
debug!(
"Slow Query Physical Plan ({:?}): {:#?}",
execution_time.elapsed()?,
&split_plan
Expand Down Expand Up @@ -155,7 +155,7 @@ impl QueryExecutor for QueryExecutorImpl {
execution_time.elapsed()?,
plan_to_move
);
info!(
debug!(
"Slow Partition Query Physical Plan ({:?}): {:#?}",
execution_time.elapsed()?,
&worker_plan
Expand Down

0 comments on commit 1d62a47

Please sign in to comment.