We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d198e90 commit a6cf5deCopy full SHA for a6cf5de
1 file changed
datafusion/core/src/physical_planner.rs
@@ -2094,13 +2094,10 @@ impl DefaultPhysicalPlanner {
2094
displayable(new_plan.as_ref()).indent(false)
2095
);
2096
2097
- // This is potentially very large, so only log at trace level,
2098
- // otherwise it can overflow the tokio runtime stack.
2099
- //
2100
- // For example:
2101
- // thread 'tokio-runtime-worker' has overflowed its stack
2102
- // fatal runtime error: stack overflow, aborting
2103
- trace!("Detailed optimized physical plan:\n{new_plan:?}");
+ debug!(
+ "Detailed optimized physical plan:\n{}\n",
+ displayable(new_plan.as_ref()).indent(true)
+ );
2104
Ok(new_plan)
2105
}
2106
0 commit comments