Truncate Debug messages after 100 characters
This commit is contained in:
parent
3f44d331d9
commit
946bbd2683
1 changed files with 7 additions and 3 deletions
|
|
@ -174,9 +174,13 @@ impl Debug {
|
||||||
lines.push(key_value("Render:", self.render_durations.average()));
|
lines.push(key_value("Render:", self.render_durations.average()));
|
||||||
lines.push(key_value("Message count:", self.message_count));
|
lines.push(key_value("Message count:", self.message_count));
|
||||||
lines.push(String::from("Last messages:"));
|
lines.push(String::from("Last messages:"));
|
||||||
lines.extend(
|
lines.extend(self.last_messages.iter().map(|msg| {
|
||||||
self.last_messages.iter().map(|msg| format!(" {}", msg)),
|
if msg.len() <= 100 {
|
||||||
);
|
format!(" {}", msg)
|
||||||
|
} else {
|
||||||
|
format!(" {:.100}...", msg)
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
lines
|
lines
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue