chore: add tracing to document2 (#2263)

This commit is contained in:
Lucas.Xu 2023-04-14 20:14:47 +08:00 committed by GitHub
parent 0e5a03a282
commit 3b1152615a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -1368,6 +1368,7 @@ dependencies = [
"serde_json",
"strum",
"strum_macros",
"tracing",
]
[[package]]

View File

@ -94,6 +94,7 @@ fn create_log_filter(level: String, with_crates: Vec<String>) -> String {
filters.push(format!("collab_folder={}", level));
filters.push(format!("flowy_user={}", level));
filters.push(format!("flowy_document={}", level));
filters.push(format!("flowy_document2={}", level));
filters.push(format!("flowy_database={}", level));
filters.push(format!("flowy_sync={}", "info"));
filters.push(format!("flowy_client_sync={}", "info"));

View File

@ -24,6 +24,7 @@ strum = "0.21"
strum_macros = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0"}
tracing = { version = "0.1", features = ["log"] }
[build-dependencies]
flowy-codegen = { path = "../flowy-codegen"}