Remove debug print-out

This commit is contained in:
Mickael Remond
2019-07-31 18:54:49 +02:00
committed by Mickaël Rémond
parent 2e864ff7f6
commit 80d2e0fa1e
3 changed files with 0 additions and 6 deletions
-2
View File
@@ -252,14 +252,12 @@ func (c *Client) recv(state SMState, keepaliveQuit chan<- struct{}) (err error)
return errors.New("stream error: " + packet.Error.Local)
// Process Stream management nonzas
case stanza.SMRequest:
fmt.Println("MREMOND: inbound: ", state.Inbound)
answer := stanza.SMAnswer{XMLName: xml.Name{
Space: stanza.NSStreamManagement,
Local: "a",
}, H: state.Inbound}
c.Send(answer)
default:
fmt.Println(packet)
state.Inbound++
}