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

@ -156,6 +156,7 @@ impl GridBlockMetaPad {
match cal_diff::<PlainTextAttributes>(old, new) {
None => Ok(None),
Some(delta) => {
tracing::trace!("[GridBlockMeta] Composing change {}", delta.to_delta_str());
self.delta = self.delta.compose(&delta)?;
Ok(Some(GridBlockMetaChange { delta, md5: self.md5() }))
}