remove a dot from logs

This commit is contained in:
Данила Горнушко 2024-06-03 13:45:43 +03:00
parent 754cd667d9
commit c803fcccbf

View file

@ -53,7 +53,7 @@ impl fmt::Display for StatsOnDetect {
impl fmt::Display for Stats10Min {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{} {}.", self.hail, self.noise,)
write!(f, "{} {}", self.hail, self.noise,)
}
}