diff --git a/api/client.go b/api/client.go
index ce660e1c12cdedda9018c617d47d035f1ca8d7cb..5067b29f1eef7ecb8679425269f5b9027f472b3c 100644
--- a/api/client.go
+++ b/api/client.go
@@ -543,7 +543,7 @@ func (c *Client) GetNodeRegistrationStatus() (int, int, error) {
 
 // DeleteContact is a function which removes a partner from Client's storage
 func (c *Client) DeleteContact(partnerId *id.ID) error  {
-	jww.DEBUG.Printf("Deleting contact ID %s", partnerId)
+	jww.DEBUG.Printf("Deleting contact with ID %s", partnerId)
 	if err := c.storage.E2e().DeletePartner(partnerId); err != nil {
 		return err
 	}
diff --git a/cmd/root.go b/cmd/root.go
index 3a7b9beeff41b1cd1f9a69a910c89159bd1f1271..9585cdf41c3739e2694779521205837eb85eb0e6 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -198,7 +198,6 @@ var rootCmd = &cobra.Command{
 
 		// Delete this recipient
 		if viper.GetBool("delete-channel") {
-			jww.FATAL.Printf("Deleting contact with ID %s", recipientID)
 			deleteChannel(client, recipientID)
 		}