We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c94c18 commit f4ee240Copy full SHA for f4ee240
asyncgit/src/sync/state.rs
@@ -21,7 +21,10 @@ impl From<RepositoryState> for RepoState {
21
RepositoryState::Clean => Self::Clean,
22
RepositoryState::Merge => Self::Merge,
23
RepositoryState::RebaseMerge => Self::Rebase,
24
- _ => Self::Other,
+ _ => {
25
+ log::debug!("state not supported yet: {:?}", state);
26
+ Self::Other
27
+ }
28
}
29
30
0 commit comments