[chg] only 3 decimal places (save space)

This commit is contained in:
Paul Schulze 2024-09-04 16:47:01 +02:00
parent 2597cc87b8
commit fb4d9ee3f4
Signed by: ddidderr
GPG Key ID: 2186CDA2E090A755

View File

@ -6,7 +6,7 @@ use std::{
use chrono::prelude::*; use chrono::prelude::*;
const TIME_FORMAT: &str = "%H:%M:%S%.6f"; const TIME_FORMAT: &str = "%H:%M:%S%.3f";
type LogtimesResult = Result<(), IoError>; type LogtimesResult = Result<(), IoError>;