diff --git a/executor/src/witgen/rows.rs b/executor/src/witgen/rows.rs index 649ac3e3f..3355f6958 100644 --- a/executor/src/witgen/rows.rs +++ b/executor/src/witgen/rows.rs @@ -95,9 +95,9 @@ impl Debug for Cell<'_, T> { let debug_str = match &self.value { CellValue::Known(v) => format!("{} = {}", self.name, v), CellValue::RangeConstraint(rc) => { - format!("{} = \n (range constraint: {})", self.name, rc) + format!("{} = ? (range constraint: {})", self.name, rc) } - CellValue::Unknown => format!("{} = ", self.name), + CellValue::Unknown => format!("{} = ?", self.name), }; f.write_str(&debug_str) }