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/template/template.go | |
parent | 422a20648466f270de195dce3bca04e977bacd13 (diff) |
log: migrate to unknwon.dev/clog/v2 (#5927)
* Add unknwon.dev/clog/v2
* Update all places
Diffstat (limited to 'internal/template/template.go')
-rw-r--r-- | internal/template/template.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/template/template.go b/internal/template/template.go index 808f4a9a..2c169a4a 100644 --- a/internal/template/template.go +++ b/internal/template/template.go @@ -19,7 +19,7 @@ import ( "github.com/microcosm-cc/bluemonday" "golang.org/x/net/html/charset" "golang.org/x/text/transform" - log "gopkg.in/clog.v1" + log "unknwon.dev/clog/v2" "gogs.io/gogs/internal/db" "gogs.io/gogs/internal/markup" @@ -292,7 +292,7 @@ func ActionIcon(opType int) string { func ActionContent2Commits(act Actioner) *db.PushCommits { push := db.NewPushCommits() if err := jsoniter.Unmarshal([]byte(act.GetContent()), push); err != nil { - log.Error(4, "Unmarshal:\n%s\nERROR: %v", act.GetContent(), err) + log.Error("Unmarshal:\n%s\nERROR: %v", act.GetContent(), err) } return push } |