Skip to content

Commit af55811

Browse files
committed
test
1 parent 542f967 commit af55811

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

crates/file_store/src/store.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub struct Store<C> {
2222

2323
impl<C> Store<C>
2424
where
25-
C: Merge + serde::Serialize + serde::de::DeserializeOwned,
25+
C: Merge + serde::Serialize + serde::de::DeserializeOwned + Debug,
2626
{
2727
/// Create a new [`Store`] file in write-only mode; error if the file exists.
2828
///
@@ -191,6 +191,7 @@ where
191191
Some(aggregated_changeset) => aggregated_changeset.merge(next_changeset),
192192
aggregated_changeset => *aggregated_changeset = Some(next_changeset),
193193
}
194+
dbg!(&aggregated_changeset);
194195
Ok(aggregated_changeset)
195196
}
196197
Err(iter_error) => Err(StoreErrorWithDump {

0 commit comments

Comments
 (0)