Browse Source

chore: add tracing to document2 (#2263)

Lucas.Xu 2 năm trước cách đây
mục cha
commit
3b1152615a

+ 1 - 0
frontend/rust-lib/Cargo.lock

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

+ 1 - 0
frontend/rust-lib/flowy-core/src/lib.rs

@@ -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"));

+ 1 - 0
frontend/rust-lib/flowy-document2/Cargo.toml

@@ -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"}