Make debug command always prettty-print (Resolves #1178) (#1180)

This commit is contained in:
Alex 2020-01-09 20:24:21 +01:00 committed by Jonathan Turner
parent 00c0327031
commit c3e466e464

View File

@ -37,7 +37,7 @@ fn debug_value(
Ok(input
.values
.map(|v| {
ReturnSuccess::value(UntaggedValue::string(format!("{:?}", v)).into_untagged_value())
ReturnSuccess::value(UntaggedValue::string(format!("{:#?}", v)).into_untagged_value())
})
.to_output_stream())
}