aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Moberg <anton.moberg@arm.com>2021-08-17 11:45:18 +0200
committerAnton Moberg <anton.moberg@arm.com>2021-08-17 11:49:01 +0200
commite39d389d3fc38d97c79dc397e5103a0615bb174f (patch)
tree412c6f9ef4b9f2bca59f70865ed682e5057f44d8
parentfa479e4e206dd30714448873e9c931699441c282 (diff)
downloadethos-u-core-software-e39d389d3fc38d97c79dc397e5103a0615bb174f.tar.gz
Layer-by-layer logging bug
The tflu_debug_log should be controlled by tflu and not the core_software. Thus changing LOG_DEBUG -> LOG shifts control from core_software to tflu. Change-Id: I3507366cee8c971b1242434ea73f405a8abc5f83
-rw-r--r--applications/inference_process/src/inference_process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/inference_process/src/inference_process.cpp b/applications/inference_process/src/inference_process.cpp
index c26bb13..2a0b687 100644
--- a/applications/inference_process/src/inference_process.cpp
+++ b/applications/inference_process/src/inference_process.cpp
@@ -40,7 +40,7 @@ using namespace std;
namespace {
void tflu_debug_log(const char *s) {
- LOG_DEBUG("%s", s);
+ LOG("%s", s);
}
void print_output_data(TfLiteTensor *output, size_t bytesToPrint) {