diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-02-20 02:25:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 02:25:02 +0800 |
commit | 1c09373b4f7dbc68154c817b4ee44bfa3b3f637c (patch) | |
tree | aeec9a80d10f9ef28f0d0b128f8a84bf3cb5bdb1 /internal/db/release.go | |
parent | 422a20648466f270de195dce3bca04e977bacd13 (diff) |
log: migrate to unknwon.dev/clog/v2 (#5927)
* Add unknwon.dev/clog/v2
* Update all places
Diffstat (limited to 'internal/db/release.go')
-rw-r--r-- | internal/db/release.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/release.go b/internal/db/release.go index 7712a0af..d0c4fbe6 100644 --- a/internal/db/release.go +++ b/internal/db/release.go @@ -10,7 +10,7 @@ import ( "strings" "time" - log "gopkg.in/clog.v1" + log "unknwon.dev/clog/v2" "xorm.io/xorm" "github.com/gogs/git-module" @@ -156,7 +156,7 @@ func (r *Release) preparePublishWebhooks() { Repository: r.Repo.APIFormat(nil), Sender: r.Publisher.APIFormat(), }); err != nil { - log.Error(2, "PrepareWebhooks: %v", err) + log.Error("PrepareWebhooks: %v", err) } } |