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
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 @@
 namespace {
 
 void tflu_debug_log(const char *s) {
-    LOG_DEBUG("%s", s);
+    LOG("%s", s);
 }
 
 void print_output_data(TfLiteTensor *output, size_t bytesToPrint) {