You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/11/10 22:38:23 UTC

[11/50] incubator-mynewt-newt git commit: newtmgr connudp; remove accidentally left in debug message.

newtmgr connudp; remove accidentally left in debug message.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/db57da14
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/db57da14
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/db57da14

Branch: refs/heads/master
Commit: db57da14046dd4b18f3a0681210f8ad89d83dfff
Parents: 609bd6a
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Wed Oct 26 12:08:27 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Wed Oct 26 12:08:27 2016 -0700

----------------------------------------------------------------------
 newtmgr/transport/connudp.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/db57da14/newtmgr/transport/connudp.go
----------------------------------------------------------------------
diff --git a/newtmgr/transport/connudp.go b/newtmgr/transport/connudp.go
index 0be57b6..5c5a775 100644
--- a/newtmgr/transport/connudp.go
+++ b/newtmgr/transport/connudp.go
@@ -89,7 +89,7 @@ func (cs *ConnUDP) ReadPacket() (*Packet, error) {
 			err.Error()))
 	}
 	data = data[0:nr]
-	fmt.Printf("Received message from %v %d\n", srcAddr, nr)
+
 	pkt, err := NewPacket(uint16(nr))
 	if err != nil {
 		return nil, err