aboutsummaryrefslogtreecommitdiff
path: root/internal/template/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/template/template.go')
-rw-r--r--internal/template/template.go4
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
}