mirror of
https://github.com/chatmail/core.git
synced 2026-05-02 12:56:30 +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!(
|
||||
context,
|
||||
"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