Skip to content
Snippets Groups Projects
Commit 81a41679 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Final debug printouts

parent f8279284
No related branches found
No related tags found
No related merge requests found
...@@ -255,6 +255,7 @@ func readContact() contact.Contact { ...@@ -255,6 +255,7 @@ func readContact() contact.Contact {
return contact.Contact{} return contact.Contact{}
} }
data, err := ioutil.ReadFile(inputFilePath) data, err := ioutil.ReadFile(inputFilePath)
jww.INFO.Printf("Size read in: %d", len(data))
if err != nil { if err != nil {
jww.FATAL.Panicf("%+v", err) jww.FATAL.Panicf("%+v", err)
} }
......
...@@ -187,6 +187,7 @@ var udCmd = &cobra.Command{ ...@@ -187,6 +187,7 @@ var udCmd = &cobra.Command{
if err != nil { if err != nil {
jww.FATAL.Panicf("%+v", err) jww.FATAL.Panicf("%+v", err)
} }
jww.INFO.Printf("Size Printed: %d", len(cBytes))
fmt.Printf("%s", cBytes) fmt.Printf("%s", cBytes)
} }
}, 90*time.Second) }, 90*time.Second)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment