Skip to content

Commit 864d03b

Browse files
committed
chore: remove log
1 parent 2486249 commit 864d03b

File tree

2 files changed

+1
-3
lines changed
  • collab-folder/src
  • collab-plugins/src/local_storage/kv

2 files changed

+1
-3
lines changed

collab-folder/src/view.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ impl ViewsMap {
256256
self.get_view_with_txn(txn, view_id, uid)
257257
}
258258

259-
/// Return the orphan views.
259+
/// Return the orphan views.d
260260
/// The orphan views are the views that its parent_view_id equal to its view_id.
261261
pub fn get_orphan_views_with_txn<T: ReadTxn>(&self, txn: &T, uid: i64) -> Vec<Arc<View>> {
262262
self

collab-plugins/src/local_storage/kv/doc.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ where
3131
let doc_state_key = make_doc_state_key(doc_id);
3232
let sv_key = make_state_vector_key(doc_id);
3333

34-
info!("new doc:{:?}, doc state len:{}", object_id, doc_state.len());
3534
self.insert(doc_state_key, doc_state)?;
3635
self.insert(sv_key, sv)?;
3736

@@ -54,7 +53,6 @@ where
5453
let doc_state_key = make_doc_state_key(doc_id);
5554
let sv_key = make_state_vector_key(doc_id);
5655

57-
info!("new doc:{:?}, doc state len:{}", object_id, doc_state.len());
5856
self.insert(doc_state_key, doc_state)?;
5957
self.insert(sv_key, state_vector)?;
6058

0 commit comments

Comments
 (0)