Deliver float events from scylla table

This commit is contained in:
Dominik Werder
2022-04-22 22:44:32 +02:00
parent 22b43fe012
commit e7016eda36
23 changed files with 917 additions and 162 deletions

View File

@@ -160,7 +160,12 @@ impl fmt::Debug for Error {
} else {
String::new()
};
write!(fmt, "{}", self.msg)?;
write!(fmt, "msg: {}", self.msg)?;
if let Some(msgs) = self.public_msg() {
for msg in msgs {
write!(fmt, "\npublic: {}", msg)?;
}
}
if !trace_str.is_empty() {
write!(fmt, "\nTrace:\n{}", trace_str)?;
}