From fb4d9ee3f4f7be2c29b87fa2a2ea8ac500b3f0dc Mon Sep 17 00:00:00 2001
From: Paul Schulze
Date: Wed, 4 Sep 2024 16:47:01 +0200
Subject: [PATCH] [chg] only 3 decimal places (save space)
---
src/main.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs
index 91e7010..d412ea6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,7 +6,7 @@ use std::{
use chrono::prelude::*;
-const TIME_FORMAT: &str = "%H:%M:%S%.6f";
+const TIME_FORMAT: &str = "%H:%M:%S%.3f";
type LogtimesResult = Result<(), IoError>;