From 1a337ca72ede19f3c14d1c7bec3ff45c2f8f9757 Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Mon, 6 Jun 2022 16:28:33 -0700
Subject: [PATCH] Remove spammy fmt.Print

---
 e2e/parse/firstMessagePart.go | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/e2e/parse/firstMessagePart.go b/e2e/parse/firstMessagePart.go
index c862b50d2..ae907af3d 100644
--- a/e2e/parse/firstMessagePart.go
+++ b/e2e/parse/firstMessagePart.go
@@ -9,7 +9,6 @@ package parse
 
 import (
 	"encoding/binary"
-	"fmt"
 	"time"
 
 	jww "github.com/spf13/jwalterweatherman"
@@ -44,9 +43,6 @@ func newFirstMessagePart(mt catalog.MessageType, id uint32, numParts uint8,
 	// Create the message structure
 	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
 	binary.BigEndian.PutUint32(m.Type, uint32(mt))
 
-- 
GitLab