打印login返回

This commit is contained in:
苏尹岚
2020-08-13 14:12:52 +08:00
parent 45aebae7ed
commit 93462f9a2b

View File

@@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"encoding/base64" "encoding/base64"
"errors" "errors"
"fmt"
"regexp" "regexp"
"strings" "strings"
"time" "time"
@@ -295,6 +296,7 @@ func LoginInternal(ctx *Context, authType, authID, authIDType, authSecret string
} else { } else {
err = ErrIllegalAuthType err = ErrIllegalAuthType
} }
fmt.Println("testauthInfo", utils.Format4Output(authInfo, false))
return authInfo, err return authInfo, err
} }