diff options
author | Unknwon <u@gogs.io> | 2017-02-09 19:29:59 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-09 19:29:59 -0500 |
commit | eb66060cd7b9bce996b1d75ae80ce1ef31d5ce62 (patch) | |
tree | cb692b6a3504985f3d0de7de159a4b8cc6f0d4a5 /routers/user | |
parent | 8a19f8a63c12fb1119c86fa65fa408ecba00bc6c (diff) |
log: start using gopkg.in/clog.v1
Diffstat (limited to 'routers/user')
-rw-r--r-- | routers/user/auth.go | 2 | ||||
-rw-r--r-- | routers/user/setting.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/routers/user/auth.go b/routers/user/auth.go index fe1c22fe..7b9f098b 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -9,12 +9,12 @@ import ( "net/url" "github.com/go-macaron/captcha" + log "gopkg.in/clog.v1" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/context" - "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/mailer" "github.com/gogits/gogs/modules/setting" ) diff --git a/routers/user/setting.go b/routers/user/setting.go index 96e7a09c..717baae8 100644 --- a/routers/user/setting.go +++ b/routers/user/setting.go @@ -11,12 +11,12 @@ import ( "strings" "github.com/Unknwon/com" + log "gopkg.in/clog.v1" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/context" - "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/mailer" "github.com/gogits/gogs/modules/setting" ) |