style: config log

This commit is contained in:
appflowy 2022-02-07 15:51:19 +08:00
parent 9f8e3b09c3
commit 337161c3d7

View File

@ -69,13 +69,14 @@ fn crate_log_filter(level: String) -> String {
filters.push(format!("flowy_user={}", level)); filters.push(format!("flowy_user={}", level));
filters.push(format!("flowy_document={}", level)); filters.push(format!("flowy_document={}", level));
filters.push(format!("flowy_collaboration={}", level)); filters.push(format!("flowy_collaboration={}", level));
filters.push(format!("flowy_net={}", level));
filters.push(format!("dart_ffi={}", "info"));
filters.push(format!("dart_database={}", "info"));
filters.push(format!("dart_notify={}", level)); filters.push(format!("dart_notify={}", level));
filters.push(format!("lib_ot={}", level)); filters.push(format!("lib_ot={}", level));
filters.push(format!("lib_ws={}", level)); filters.push(format!("lib_ws={}", level));
filters.push(format!("lib_infra={}", level)); filters.push(format!("lib_infra={}", 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.push(format!("flowy_sync={}", "info"));
filters.join(",") filters.join(",")
} }