mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
fixed logging error
This commit is contained in:
parent
0943117ad7
commit
0ed2535b53
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ func ShowIndex(c *gin.Context) {
|
||||||
|
|
||||||
repos, err := model.GetRepoList(db, user)
|
repos, err := model.GetRepoList(db, user)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf(err)
|
log.Error(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
c.HTML(200, "repos.html", gin.H{
|
c.HTML(200, "repos.html", gin.H{
|
||||||
|
|
Loading…
Reference in a new issue