mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:01:24 +01:00
[BUG] Log FindRenamedBranch error
- Fix error string to add an `%v` verb to log the error correctly.
This commit is contained in:
parent
031822b8fc
commit
255b60931f
1 changed files with 1 additions and 1 deletions
|
@ -848,7 +848,7 @@ func getRefName(ctx *Base, repo *Repository, pathType RepoRefType) string {
|
|||
return getRefNameFromPath(ctx, repo, path, func(s string) bool {
|
||||
b, exist, err := git_model.FindRenamedBranch(ctx, repo.Repository.ID, s)
|
||||
if err != nil {
|
||||
log.Error("FindRenamedBranch", err)
|
||||
log.Error("FindRenamedBranch: %v", err)
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue