Add size of data in bytes to output tensor print

The printing of the output tensor can be truncated, by adding the
original size of the output in bytes the included data can be
checked for completeness. The dims will tell the number of elements
of the output tensor and is not useful for this purpose as the
element size can vary.

Change-Id: Ied5447e34416a8c6668eeae5c01a5474f103023f
diff --git a/applications/inference_process/src/inference_process.cpp b/applications/inference_process/src/inference_process.cpp
index 9438882..264c4ba 100644
--- a/applications/inference_process/src/inference_process.cpp
+++ b/applications/inference_process/src/inference_process.cpp
@@ -321,6 +321,7 @@
 
     LOG("%d],\n", output->dims->data[dims_size - 1]);
     LOG("\"data_address\": \"%08" PRIx32 "\",\n", (uint32_t)output->data.data);
+    LOG("\"data_bytes\": %d,\n", output->bytes);
 
     if (numBytesToPrint) {
         LOG("\"crc32\": \"%08" PRIx32 "\",\n", crc32);