mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 17:08:21 +00:00
Add debug log
This commit is contained in:
parent
5c94c18c7b
commit
f4ee24055b
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue