mirror of
https://github.com/chatmail/core.git
synced 2026-05-22 16:26:31 +03:00
fix conversion from nanoseconds to milliseconds
1_000_000 nanosecond = 1 millisecond
This commit is contained in:
committed by
holger krekel
parent
ec8dbddcfb
commit
e6d9991581
@@ -403,7 +403,7 @@ pub fn perform_imap_fetch(context: &Context) {
|
|||||||
info!(
|
info!(
|
||||||
context,
|
context,
|
||||||
"INBOX-fetch done in {:.4} ms.",
|
"INBOX-fetch done in {:.4} ms.",
|
||||||
start.elapsed().as_nanos() as f64 / 1000.0,
|
start.elapsed().as_nanos() as f64 / 1_000_000.0,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user