From 278d593580137b50bf35e1fc69370b58aedc004f Mon Sep 17 00:00:00 2001 From: rustdesk Date: Tue, 28 May 2024 15:52:26 +0800 Subject: [PATCH] adjust log file days from 7 days to 31 days --- libs/hbb_common/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/hbb_common/src/lib.rs b/libs/hbb_common/src/lib.rs index 11b791c91..15ef31022 100644 --- a/libs/hbb_common/src/lib.rs +++ b/libs/hbb_common/src/lib.rs @@ -41,6 +41,7 @@ pub use chrono; pub use directories_next; pub use libc; pub mod keyboard; +pub use base64; #[cfg(not(any(target_os = "android", target_os = "ios")))] pub use dlopen; #[cfg(not(any(target_os = "android", target_os = "ios")))] @@ -48,10 +49,9 @@ pub use machine_uid; pub use serde_derive; pub use serde_json; pub use sysinfo; +pub use thiserror; pub use toml; pub use uuid; -pub use base64; -pub use thiserror; pub type Stream = tcp::FramedStream; pub type SessionID = uuid::Uuid; @@ -384,7 +384,7 @@ pub fn init_log(_is_async: bool, _name: &str) -> Option