diff --git a/cmd/root.go b/cmd/root.go
index b8b4818e0c41257e4a48ac577ff90b4525c13fea..1c91a0ea00ede3665335f306ac7ccc0dec165880 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -255,6 +255,7 @@ func readContact() contact.Contact {
 		return contact.Contact{}
 	}
 	data, err := ioutil.ReadFile(inputFilePath)
+	jww.INFO.Printf("Size read in: %d", len(data))
 	if err != nil {
 		jww.FATAL.Panicf("%+v", err)
 	}
diff --git a/cmd/ud.go b/cmd/ud.go
index f88d72d10e3fb64126f66623ddbfe6e95bff0d0c..67ead4fe6a98ce2f7f70f875af5f0efe0d77668f 100644
--- a/cmd/ud.go
+++ b/cmd/ud.go
@@ -187,6 +187,7 @@ var udCmd = &cobra.Command{
 					if err != nil {
 						jww.FATAL.Panicf("%+v", err)
 					}
+					jww.INFO.Printf("Size Printed: %d", len(cBytes))
 					fmt.Printf("%s", cBytes)
 				}
 			}, 90*time.Second)