Tizen 2.4.0 rev3 SDK Public Release tizen_2.4
authorjk7744.park <jk7744.park@samsung.com>
Wed, 24 Feb 2016 09:39:42 +0000 (18:39 +0900)
committerjk7744.park <jk7744.park@samsung.com>
Wed, 24 Feb 2016 09:39:42 +0000 (18:39 +0900)
inc/shop-adaptor-log.h
packaging/shop-adaptor.spec
src/shop-adaptor.c

index fa4c757..6133597 100644 (file)
@@ -158,15 +158,6 @@ extern "C"
             LOGD(FONT_COLOR_CYAN"[%d]"fmt""FONT_COLOR_RESET, shop_adaptor_gettid(), ##arg);     \\r
         } while (0)\r
 \r
-/**\r
- * @brief Prints debug message on entry to particular function\r
- * @param[in]  fmt  Format of data to be displayed\r
- * @param[in]  args Arguments to be displayed\r
- */\r
-#define shop_adaptor_debug_secure(fmt, arg...) do { \\r
-            SECURE_LOGD(FONT_COLOR_CYAN"[%d]"fmt""FONT_COLOR_RESET, shop_adaptor_gettid(), ##arg);     \\r
-        } while (0)\r
-\r
 #define plugin_req_enter()                     do { \\r
                shop_adaptor_info("[ENTER] plugin API call -)) -)) -)) -)) -)) -)) -)) -)) -)) -))"); \\r
        } while (0)\r
index afe9322..d40f4f9 100644 (file)
@@ -1,8 +1,8 @@
 Name:       shop-adaptor
 Summary:    shop Adaptor
-Version:    1.0.0
+Version:    0.9.62
 Release:    1
-Group:      Social & Content
+Group:      TO_BE/FILLED_IN
 License:    Apache-2.0
 Source0:    %{name}-%{version}.tar.gz
 BuildRequires:  pkgconfig(sqlite3)
index 7060765..b0af4dc 100644 (file)
@@ -482,7 +482,7 @@ shop_error_code_t shop_adaptor_refresh_access_token(shop_adaptor_plugin_context_
        if ((NULL == context) || (NULL == new_access_token) || (0 >= strlen(new_access_token))) {
                return SHOP_ADAPTOR_ERROR_INVALID_ARGUMENT;
        }
-       shop_adaptor_debug_secure("New access token : %s", new_access_token);
+       shop_adaptor_debug("New access token : %s", new_access_token);
 
        free(context->access_token);
        context->access_token = NULL;
@@ -498,7 +498,7 @@ shop_error_code_t shop_adaptor_refresh_uid(shop_adaptor_plugin_context_h context
        if ((NULL == context) || (NULL == new_uid) || (0 >= strlen(new_uid))) {
                return SHOP_ADAPTOR_ERROR_INVALID_ARGUMENT;
        }
-       shop_adaptor_debug_secure("New uid : %s", new_uid);
+       shop_adaptor_debug("New uid : %s", new_uid);
 
        free(context->duid);
        context->duid = NULL;