Skip to content

Commit

Permalink
feat: change polling log level to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma authored Jan 16, 2023
1 parent 4a80441 commit e050fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/gocq/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ func getTicket(u string) (str string) {
func fetchCaptcha(id string) string {
g, err := download.Request{URL: "https://captcha.go-cqhttp.org/captcha/ticket?id=" + id}.JSON()
if err != nil {
log.Warnf("获取 Ticket 时出现错误: %v", err)
log.Debugf("获取 Ticket 时出现错误: %v", err)
return ""
}
if g.Get("ticket").Exists() {
Expand Down

0 comments on commit e050fd6

Please sign in to comment.