From 43c65e492f9a8690ff83844326bfc28160adfd39 Mon Sep 17 00:00:00 2001 From: Yongjoo Ahn Date: Tue, 27 Jun 2023 15:52:47 +0900 Subject: [PATCH] [trivial] Fix log level warn -> info - Decrease log level since the line is in proper scenario when the num_tensors is exactly 16. Signed-off-by: Yongjoo Ahn --- gst/nnstreamer/nnstreamer_plugin_api_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/nnstreamer/nnstreamer_plugin_api_impl.c b/gst/nnstreamer/nnstreamer_plugin_api_impl.c index 96824f2..e79624a 100644 --- a/gst/nnstreamer/nnstreamer_plugin_api_impl.c +++ b/gst/nnstreamer/nnstreamer_plugin_api_impl.c @@ -1776,7 +1776,7 @@ gst_buffer_n_tensor (GstBuffer * buffer) extra_info = (GstTensorExtraInfo *) map.data; num_mems = extra_info->num_extra_tensors + NNS_TENSOR_SIZE_LIMIT; } else { - nns_logw ("The last memory does not have extra tensors header. " + nns_logi ("The last memory does not have extra tensors header. " "Assuming the number of tensors is %d.", num_mems); } -- 2.7.4