add feature flowy_unit_test

This commit is contained in:
appflowy
2021-12-08 21:51:06 +08:00
parent 7ac55f29db
commit 6b338d4cc5
12 changed files with 217 additions and 105 deletions

View File

@ -25,7 +25,7 @@ impl KV {
}
fn set(value: KeyValue) -> Result<(), String> {
log::debug!("set value: {:?}", value);
log::trace!("[KV]: set value: {:?}", value);
update_cache(value.clone());
let _ = diesel::replace_into(kv_table::table)