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

index bcf855c..6a93541 100644 (file)
@@ -146,16 +146,6 @@ extern "C"
             LOGD(FONT_COLOR_CYAN"[%d]"fmt""FONT_COLOR_RESET, contact_adaptor_gettid(), ##arg);     \
         } while (0)
 
-/**
- * @brief Prints debug message on entry to particular function
- * @param[in]  fmt  Format of data to be displayed
- * @param[in]  args Arguments to be displayed
- */
-#define contact_adaptor_debug_secure(fmt, arg...) do { \
-            SECURE_LOGD(FONT_COLOR_CYAN"[%d]"fmt""FONT_COLOR_RESET, contact_adaptor_gettid(), ##arg);     \
-        } while (0)
-
-
 #define plugin_req_enter()                     do { \
                contact_adaptor_info("[ENTER] plugin API call -)) -)) -)) -)) -)) -)) -)) -)) -)) -))"); \
        } while (0)
index 5898497..c34ae16 100644 (file)
@@ -1,8 +1,8 @@
 Name:       contact-adaptor
 Summary:    Contact 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(glib-2.0)
index 98dfac0..2cf858c 100644 (file)
@@ -578,7 +578,7 @@ contact_adaptor_plugin_context_h contact_adaptor_create_plugin_context(contact_a
        contact_adaptor_warning("Create plugin context");
 
        if ((NULL == plugin) || (NULL == duid) || (NULL == access_token) || (NULL == service_name)) {
-               contact_adaptor_error("Invalid argument: %p, %p", duid, access_token);
+               contact_adaptor_error("Invalid argument: %s, %s", duid, access_token);
                return NULL;
        }
 
@@ -804,7 +804,7 @@ contact_error_code_t contact_adaptor_refresh_access_token(contact_adaptor_plugin
        if ((NULL == context) || (NULL == new_access_token) || (0 >= strlen(new_access_token))) {
                return CONTACT_ADAPTOR_ERROR_INVALID_ARGUMENT;
        }
-       contact_adaptor_debug_secure("New access token : %s", new_access_token);
+       contact_adaptor_debug("New access token : %s", new_access_token);
 
        free(context->access_token);
        context->access_token = NULL;
@@ -820,7 +820,7 @@ contact_error_code_t contact_adaptor_refresh_uid(contact_adaptor_plugin_context_
        if ((NULL == context) || (NULL == new_uid) || (0 >= strlen(new_uid))) {
                return CONTACT_ADAPTOR_ERROR_INVALID_ARGUMENT;
        }
-       contact_adaptor_debug_secure("New uid : %s", new_uid);
+       contact_adaptor_debug("New uid : %s", new_uid);
 
        free(context->duid);
        context->duid = NULL;