chore: config flowy-sync crate log level

This commit is contained in:
appflowy
2022-04-09 11:55:00 +08:00
parent 953af35029
commit 0ba0bb62ce
6 changed files with 17 additions and 3 deletions

View File

@ -975,6 +975,7 @@ dependencies = [
"protobuf",
"serde",
"serde_json",
"serde_repr",
"strum",
"strum_macros",
"uuid",

View File

@ -74,12 +74,11 @@ fn crate_log_filter(level: String) -> String {
filters.push(format!("lib_ot={}", level));
filters.push(format!("lib_ws={}", level));
filters.push(format!("lib_infra={}", level));
filters.push(format!("flowy_sync={}", level));
filters.push(format!("dart_ffi={}", "info"));
filters.push(format!("flowy_database={}", "info"));
filters.push(format!("flowy_net={}", "info"));
filters.push(format!("flowy_sync={}", "info"));
filters.join(",")
}