Add debug log

This commit is contained in:
Stephan Dilly 2021-11-29 23:21:40 +01:00
parent 5c94c18c7b
commit f4ee24055b

View file

@ -21,7 +21,10 @@ impl From<RepositoryState> for RepoState {
RepositoryState::Clean => Self::Clean,
RepositoryState::Merge => Self::Merge,
RepositoryState::RebaseMerge => Self::Rebase,
_ => Self::Other,
_ => {
log::debug!("state not supported yet: {:?}", state);
Self::Other
}
}
}
}