Force SetDebug true

This commit is contained in:
idk
2022-02-02 00:44:08 -05:00
parent a2fcfb8bc1
commit 1fc3dc5a20
2 changed files with 3 additions and 2 deletions

View File

@ -185,7 +185,8 @@ func SetToPortInt(i int) func(*Client) error {
//SetDebug enables debugging messages
func SetDebug(b bool) func(*Client) error {
return func(c *Client) error {
c.debug = b
//c.debug = b
d.debug = true
return nil
}
}