Skip to content
Snippets Groups Projects
Commit 9154918d authored by Jake Taylor's avatar Jake Taylor
Browse files

Merge remote-tracking branch 'origin/release' into release

parents 37ecbc7c 93a19734
No related branches found
No related tags found
1 merge request!510Release
...@@ -129,7 +129,7 @@ func (m *pickup) processMessageRetrieval(comms MessageRetrievalComms, ...@@ -129,7 +129,7 @@ func (m *pickup) processMessageRetrieval(comms MessageRetrievalComms,
} }
jww.DEBUG.Printf("messages: %v\n", bundle.Messages) jww.TRACE.Printf("messages: %v\n", bundle.Messages)
if len(bundle.Messages) != 0 { if len(bundle.Messages) != 0 {
// If successful and there are messages, we send them to another // If successful and there are messages, we send them to another
......
...@@ -9,7 +9,6 @@ package parse ...@@ -9,7 +9,6 @@ package parse
import ( import (
"encoding/binary" "encoding/binary"
"fmt"
"time" "time"
jww "github.com/spf13/jwalterweatherman" jww "github.com/spf13/jwalterweatherman"
...@@ -44,9 +43,6 @@ func newFirstMessagePart(mt catalog.MessageType, id uint32, numParts uint8, ...@@ -44,9 +43,6 @@ func newFirstMessagePart(mt catalog.MessageType, id uint32, numParts uint8,
// Create the message structure // Create the message structure
m := firstMessagePartFromBytes(make([]byte, size)) m := firstMessagePartFromBytes(make([]byte, size))
fmt.Printf("len of contents: %d"+
"\nsize: %d\n"+
"len m.contents: %d\n", len(contents), size, len(m.Contents))
// Set the message type // Set the message type
binary.BigEndian.PutUint32(m.Type, uint32(mt)) binary.BigEndian.PutUint32(m.Type, uint32(mt))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment