show detailed error message

This commit is contained in:
Liu Hancheng 2022-03-04 15:31:11 +08:00
parent 58e2903177
commit b138b92d39

View File

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