Fix log level 92/224492/2
authorInkyun Kil <inkyun.kil@samsung.com>
Tue, 11 Feb 2020 04:00:19 +0000 (13:00 +0900)
committerInkyun Kil <inkyun.kil@samsung.com>
Tue, 18 Feb 2020 00:54:05 +0000 (09:54 +0900)
Change-Id: I6a4b22a3b4fdf27c5db99d57f66da31119d60fa1
Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
src/data_control_internal.c
src/data_control_provider.c

index 7c4c911..ca4e1cc 100644 (file)
@@ -304,7 +304,7 @@ static char **__map_get_value_list(int fd, int *value_count)
                        _LOGE("datacontrol_recv_map_get_value_list : ...from %d: fail to read\n", fd);
                        goto ERROR;
                }
-               _LOGD("value_list[i] : %s  %d" , value_list[i] , nb);
+               _SECURE_LOGI("value_list[i] : %s  %d" , value_list[i] , nb);
        }
        *value_count = count;
 
index 94c03f0..8213f0e 100644 (file)
@@ -1214,7 +1214,7 @@ static int __send_get_value_result(int fd, bundle *b, void *data)
                        return DATA_CONTROL_ERROR_IO_ERROR;
                }
 
-               _LOGD("value_list = %s", value_list[i]);
+               _SECURE_LOGI("value_list = %s", value_list[i]);
                if (_write_socket(fd, value_list[i], length, &nb) !=
                                DATA_CONTROL_ERROR_NONE) {
                        _LOGE("Writing a value_list to a file descriptor is failed. errno = %d", errno);