summaryrefslogtreecommitdiff
path: root/mv_common
diff options
context:
space:
mode:
authorkwang son <k.son@samsung.com>2023-04-24 07:02:34 +0000
committerGerrit Code Review <gerrit@review>2023-04-24 07:02:34 +0000
commitd8c873f025660ccddf61080c2d636c1fc8f58298 (patch)
treea0d4846d75bd2519705e95cae2a6eda1776a55ac /mv_common
parentcb311031f6083e12bf37d09a86f648b001ccfc1f (diff)
parent064d2bb7f5cccd398439ac90f80afd043745cd85 (diff)
downloadmediavision-d8c873f025660ccddf61080c2d636c1fc8f58298.tar.gz
mediavision-d8c873f025660ccddf61080c2d636c1fc8f58298.tar.bz2
mediavision-d8c873f025660ccddf61080c2d636c1fc8f58298.zip
Merge "Fix false LOGE to proper log level" into tizen
Diffstat (limited to 'mv_common')
-rw-r--r--mv_common/src/mv_common_c.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mv_common/src/mv_common_c.cpp b/mv_common/src/mv_common_c.cpp
index 9943252d..027707cb 100644
--- a/mv_common/src/mv_common_c.cpp
+++ b/mv_common/src/mv_common_c.cpp
@@ -576,7 +576,7 @@ int mv_engine_config_get_array_string_attribute_c(mv_engine_config_h engine_cfg,
int stringSize = 0;
for (int idx = 0; idx < attributeSize; ++idx) {
stringSize = attributeValue[idx].size();
- LOGE("Converting %s with length %d to char*", attributeValue[idx].c_str(), stringSize);
+ LOGI("Converting %s with length %d to char*", attributeValue[idx].c_str(), stringSize);
(*values)[idx] = (char *) malloc(sizeof(char) * (stringSize + 1));
if ((*values)[idx] == NULL) {
LOGE("Failed to convert string to char*");