From eb8901c263076a7e36eb9822fb9f595900c14aaf Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Mon, 13 Apr 2020 11:14:20 +0900 Subject: [PATCH] Remove unnecessary error logs Change-Id: Ib1333d15087741edc3155e9be7efb3312149fba7 Signed-off-by: Jihoon Kim --- receiver/src/ft.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/receiver/src/ft.cpp b/receiver/src/ft.cpp index 34763da..55c3f38 100644 --- a/receiver/src/ft.cpp +++ b/receiver/src/ft.cpp @@ -415,12 +415,10 @@ void request_all_sticker_data(const char *mode, const char *type) if (vconf_get_int(VCONFKEY_STICKER_SUPPORTED_FEATURE, &feature_flag) == 0) { if (feature_flag & VCONFKEY_STICKER_FEATURE_AREMOJI) - if (!request_sticker_data(mode, "arsticker", type)) - LOGW("Failed to request ar_sticker sync"); + request_sticker_data(mode, "arsticker", type); if (feature_flag & VCONFKEY_STICKER_FEATURE_BITMOJI) - if (!request_sticker_data(mode, "bitmoji", type)) - LOGW("Failed to request bitmoji sync"); + request_sticker_data(mode, "bitmoji", type); } else LOGW("Failed to get value of VCONFKEY_STICKER_SUPPORTED_FEATURE"); -- 2.7.4