We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d249ac commit 4dbc583Copy full SHA for 4dbc583
client.go
@@ -537,6 +537,7 @@ func (s *Client) recognizeAuth(data []byte) (itsAuth bool) {
537
}
538
539
if s.isAuthed {
540
+ s.l.Debugln("already authenticated")
541
return false
542
543
@@ -550,6 +551,7 @@ func (s *Client) recognizeAuth(data []byte) (itsAuth bool) {
550
551
s.authChan <- struct{}{}
552
return true
553
554
+ s.l.Debugln("failed auth via invalid auth json. Response:", string(data))
555
return
556
557
@@ -560,6 +562,7 @@ func (s *Client) recognizeAuth(data []byte) (itsAuth bool) {
560
562
561
563
564
565
+ s.l.Debugln("failed auth. Diff:", diff.String())
566
567
568
0 commit comments