diff --git a/groupChat/receive.go b/groupChat/receive.go
index 0cf5ca65f7a90a2648e1e5d30fe2a26772eb8007..b2915735ca0eea7e44e16ae12fc8526e197dba24 100644
--- a/groupChat/receive.go
+++ b/groupChat/receive.go
@@ -42,14 +42,14 @@ func (m Manager) receive(rawMsgs chan message.Receive, stop *stoppable.Single) {
 			stop.ToStopped()
 			return
 		case receiveMsg := <-rawMsgs:
-			jww.DEBUG.Print("Group message reception received cMix message.")
+			jww.TRACE.Print("Group message reception received cMix message.")
 
 			// Attempt to read the message
 			g, msgID, timestamp, senderID, msg, noFpMatch, err :=
 				m.readMessage(receiveMsg)
 			if err != nil {
 				if noFpMatch {
-					jww.DEBUG.Printf("Received message not for group chat: %+v",
+					jww.TRACE.Printf("Received message not for group chat: %+v",
 						err)
 				} else {
 					jww.WARN.Printf("Group message reception failed to read "+
diff --git a/single/receiveResponse.go b/single/receiveResponse.go
index 8f09d8c8d7a98ff142eddaaef40e0bc5bd0a3369..72a613b74acba023868fa3d34ab3c2e21b64c62a 100644
--- a/single/receiveResponse.go
+++ b/single/receiveResponse.go
@@ -33,7 +33,7 @@ func (m *Manager) receiveResponseHandler(rawMessages chan message.Receive,
 			stop.ToStopped()
 			return
 		case msg := <-rawMessages:
-			jww.DEBUG.Printf("Received CMIX message; checking if it is a " +
+			jww.TRACE.Printf("Received CMIX message; checking if it is a " +
 				"single-use response.")
 
 			// Process CMIX message
diff --git a/single/reception.go b/single/reception.go
index eca3bca2d2d5b093b0774d8e51b06ec9a763f4ed..7616af03228ec5e643b1da4a1c20ad936d1332d9 100644
--- a/single/reception.go
+++ b/single/reception.go
@@ -31,7 +31,7 @@ func (m *Manager) receiveTransmissionHandler(rawMessages chan message.Receive,
 			stop.ToStopped()
 			return
 		case msg := <-rawMessages:
-			jww.DEBUG.Printf("Received CMIX message; checking if it is a " +
+			jww.TRACE.Printf("Received CMIX message; checking if it is a " +
 				"single-use transmission.")
 
 			// Check if message is a single-use transmit message
@@ -39,7 +39,7 @@ func (m *Manager) receiveTransmissionHandler(rawMessages chan message.Receive,
 			if fp != cmixMsg.GetKeyFP() {
 				// If the verification fails, then ignore the message as it is
 				// likely garbled or for a different protocol
-				jww.INFO.Print("Failed to read single-use CMIX message: " +
+				jww.TRACE.Print("Failed to read single-use CMIX message: " +
 					"fingerprint verification failed.")
 				continue
 			}
diff --git a/storage/edge/edge.go b/storage/edge/edge.go
index a720055d73f95dcb8c70455cb16a40a3ba0f81b9..7e88d35eccbbe19752dccd4de63363e37e5a12f5 100644
--- a/storage/edge/edge.go
+++ b/storage/edge/edge.go
@@ -177,7 +177,6 @@ func (s *Store) Check(identity *id.ID, identityFP []byte, messageContents []byte
 	}
 
 	for _, preimage := range preimages {
-		jww.INFO.Printf("checking  ifp: %v, msg: %v, preimage %v", identityFP, messageContents, preimage)
 		if fingerprint2.CheckIdentityFP(identityFP, messageContents, preimage.Data) {
 			return true, true, preimage
 		}