diff options
author | zeripath <art27@cantab.net> | 2021-05-09 17:04:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-09 18:04:53 +0200 |
commit | a2df2654765c85cb7e7efc5eec9a97befa47bf15 (patch) | |
tree | 5acff01b72dfae53be85f1ddc80a6328472b0cd3 /modules/auth/sso/sso.go | |
parent | 4ea0b46d9b484917f122d08428cde71b3ba80aed (diff) | |
download | gitea-a2df2654765c85cb7e7efc5eec9a97befa47bf15.tar.gz gitea-a2df2654765c85cb7e7efc5eec9a97befa47bf15.zip |
Add trace logging to SSO methods (#15803)
It is currenly impossible to detect which "SSO" method is responsible for login. This
PR adds some basic trace logging to these methods.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/auth/sso/sso.go')
-rw-r--r-- | modules/auth/sso/sso.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/auth/sso/sso.go b/modules/auth/sso/sso.go index e670f1a8a7..8785a5f068 100644 --- a/modules/auth/sso/sso.go +++ b/modules/auth/sso/sso.go @@ -77,6 +77,8 @@ func SessionUser(sess SessionStore) *models.User { if uid == nil { return nil } + log.Trace("Session Authorization: Found user[%d]", uid) + id, ok := uid.(int64) if !ok { return nil @@ -90,6 +92,8 @@ func SessionUser(sess SessionStore) *models.User { } return nil } + + log.Trace("Session Authorization: Logged in user %-v", user) return user } |