We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 542f967 commit af55811Copy full SHA for af55811
1 file changed
crates/file_store/src/store.rs
@@ -22,7 +22,7 @@ pub struct Store<C> {
22
23
impl<C> Store<C>
24
where
25
- C: Merge + serde::Serialize + serde::de::DeserializeOwned,
+ C: Merge + serde::Serialize + serde::de::DeserializeOwned + Debug,
26
{
27
/// Create a new [`Store`] file in write-only mode; error if the file exists.
28
///
@@ -191,6 +191,7 @@ where
191
Some(aggregated_changeset) => aggregated_changeset.merge(next_changeset),
192
aggregated_changeset => *aggregated_changeset = Some(next_changeset),
193
}
194
+ dbg!(&aggregated_changeset);
195
Ok(aggregated_changeset)
196
197
Err(iter_error) => Err(StoreErrorWithDump {
0 commit comments