show detailed error message

This commit is contained in:
Liu Hancheng 2022-03-04 15:31:11 +08:00
parent 58e2903177
commit b138b92d39
1 changed files with 4 additions and 4 deletions

View File

@ -34,12 +34,12 @@ impl Display for DocumentFormatError {
match self {
Self::Internal(e) => write!(f, "An internal error has occurred. `{}`.", e),
Self::MalformedPayload(me, b) => match me.borrow() {
milli::documents::Error::JsonError(_) => write!(
milli::documents::Error::JsonError(se) => write!(
f,
"The `{}` payload provided is malformed. line: {}",
b, "TODO"
"The `{}` payload provided is malformed. `Couldn't serialize document value. at line {} column {}`",
b,se.line(),se.column()
),
_ => write!(f, "The `{}` payload provided is malformed. line: {}", b, me),
_ => write!(f, "The `{}` payload provided is malformed. `{}`.", b, me),
},
}
}