fix: duplicated selections from remote (#5023)

* fix: duplicated selections from remote

* fix: docker ci
This commit is contained in:
Lucas.Xu
2024-04-01 12:08:52 +08:00
committed by GitHub
parent 932a403b5d
commit 893d23d6a3
3 changed files with 20 additions and 2 deletions

View File

@ -4,7 +4,8 @@ use crate::AppFlowyCoreConfig;
static INIT_LOG: AtomicBool = AtomicBool::new(false);
pub(crate) fn init_log(config: &AppFlowyCoreConfig) {
if cfg!(debug_assertions) && get_bool_from_env_var("DISABLE_CI_TEST_LOG") {
#[cfg(debug_assertions)]
if get_bool_from_env_var("DISABLE_CI_TEST_LOG") {
return;
}