Add new field to debug impl

This commit is contained in:
Steven Fackler 2016-12-18 16:42:06 -08:00
parent a1c5ab55a1
commit ce53a497ca

View File

@ -240,6 +240,7 @@ impl fmt::Debug for DbError {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("DbError")
.field("severity", &self.severity)
.field("parsed_severity", &self.parsed_severity)
.field("code", &self.code)
.field("message", &self.message)
.field("detail", &self.detail)