(msg string, args ...any)
| 50 | } |
| 51 | |
| 52 | func (c *QQClient) debug(msg string, args ...any) { |
| 53 | if c.logger != nil { |
| 54 | c.logger.Debug(log.Getcaller(msg), args...) |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | func (c *QQClient) debugln(msgs ...any) { |
| 59 | if c.logger != nil { |
no test coverage detected