chore: disable log in bloc test (#1336)

This commit is contained in:
Nathan.fooo
2022-10-22 20:58:33 +08:00
committed by GitHub
parent 80f034beee
commit 8dff9dc67c
7 changed files with 19 additions and 18 deletions

View File

@ -23,7 +23,7 @@ pub extern "C" fn init_sdk(path: *mut c_char) -> i64 {
let path: &str = c_str.to_str().unwrap();
let server_config = get_client_server_configuration().unwrap();
let config = FlowySDKConfig::new(path, "appflowy", server_config, false).log_filter("debug");
let config = FlowySDKConfig::new(path, "appflowy", server_config, false).log_filter("info");
FLOWY_SDK.get_or_init(|| FlowySDK::new(config));
0