refactor: print less log in slient mode

This commit is contained in:
Revincx
2022-10-15 12:34:14 +08:00
parent 7131decf73
commit ecf354fca9
2 changed files with 11 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ func initLog() {
log.SetFormatter(&nested.Formatter{ log.SetFormatter(&nested.Formatter{
HideKeys: true, HideKeys: true,
NoColors: true, NoColors: true,
TimestampFormat: "[2006-01-02 15:04:05]", TimestampFormat: "2006-01-02 15:04:05",
}) })
} }
} }

View File

@@ -41,9 +41,11 @@ func Login(c *srunTransfer.Login) error {
} }
return nil return nil
} }
log.Infoln("用户似乎未登录,开始尝试登录") log.Infoln("检测到用户未登录,开始尝试登录...")
log.Infoln("正在获取客户端 IP") if !slientMode {
log.Infoln("正在获取客户端 IP")
}
var ip interface{} var ip interface{}
ip, ok = res["client_ip"] ip, ok = res["client_ip"]
if !ok { if !ok {
@@ -56,7 +58,9 @@ func Login(c *srunTransfer.Login) error {
log.Debugln("ip: ", G.Ip) log.Debugln("ip: ", G.Ip)
} }
log.Infoln("正在获取 Token") if !slientMode {
log.Infoln("正在获取 Token")
}
{ {
res, e := api.GetChallenge(G.Form.UserName, G.Ip) res, e := api.GetChallenge(G.Form.UserName, G.Ip)
if e != nil { if e != nil {
@@ -71,7 +75,9 @@ func Login(c *srunTransfer.Login) error {
log.Debugln("token: ", G.Token) log.Debugln("token: ", G.Token)
} }
log.Infoln("发送登录请求") if !slientMode {
log.Infoln("发送登录请求")
}
{ {
info, e := json.Marshal(map[string]string{ info, e := json.Marshal(map[string]string{
"username": G.Form.UserName, "username": G.Form.UserName,