From e39d389d3fc38d97c79dc397e5103a0615bb174f Mon Sep 17 00:00:00 2001 From: Anton Moberg Date: Tue, 17 Aug 2021 11:45:18 +0200 Subject: 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 --- applications/inference_process/src/inference_process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.1