2 Commits

Author SHA1 Message Date
idk
86009cc805 Force SetDebug true 2022-02-02 00:53:06 -05:00
idk
1fc3dc5a20 Force SetDebug true 2022-02-02 00:44:08 -05:00
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
USER_GH=eyedeekay
VERSION=0.32.51
VERSION=0.32.53
packagename=gosam
echo: fmt

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
c.debug = true
return nil
}
}