commit for LOG check 33/73733/1 accepted/tizen/common/20160609.150455 accepted/tizen/ivi/20160610.011317 accepted/tizen/mobile/20160610.011442 accepted/tizen/tv/20160610.011315 accepted/tizen/wearable/20160610.011357 submit/tizen/20160609.092824
authorJihoon Jung <jh8801.jung@samsung.com>
Thu, 9 Jun 2016 09:21:18 +0000 (18:21 +0900)
committerJihoon Jung <jh8801.jung@samsung.com>
Thu, 9 Jun 2016 09:22:04 +0000 (18:22 +0900)
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
Change-Id: I7935130b4530489661886a4a72ae1f42ea119e40

src/commonlib/include/net_nfc_debug_internal.h
src/manager/net_nfc_server_route_table.c

index 61f8603f8e16c1729e34762952efea83b3f0f2de..c6ec3dc8e64aeb43804f805c673d4a5e0e8f95c4 100755 (executable)
@@ -213,7 +213,7 @@ const char *net_nfc_get_log_tag();
 
 #define SECURE_MSG(format, args...) \
        do {\
-               SECURE_LOGD(format, ##args);\
+               NFC_LOGD(format, ##args);\
                if (nfc_log_file) \
                { \
                        struct tm *local_tm; \
index e5fe72571f211e911ec101f58bc5409edd4038d8..b23323124f6960c6b55d0589906ab1c9751ff521 100755 (executable)
@@ -1215,15 +1215,15 @@ static bool _display_route_table_cb(const char *package,
 {
        int i;
        if (preferred_handler == handler) {
-               SECURE_LOGD(" + Preferred PACKAGE [%s|%s]", handler->package, handler->id);
+               DEBUG_SERVER_MSG(" + Preferred PACKAGE [%s|%s]", handler->package, handler->id);
        } else {
-               SECURE_LOGD(" + PACKAGE [%s|%s]", handler->package, handler->id);
+               DEBUG_SERVER_MSG(" + PACKAGE [%s|%s]", handler->package, handler->id);
        }
 
        for (i = 0; i < handler->aids[0]->len; i++) {
                aid_info_t *info = (aid_info_t *)handler->aids[0]->pdata[i];
 
-               SECURE_LOGD(" +-- AID [%s], SE [%s], CATEGORY [%s%s], MANIFEST [%s]%s",
+               DEBUG_SERVER_MSG(" +-- AID [%s], SE [%s], CATEGORY [%s%s], MANIFEST [%s]%s",
                        info->aid,
                        __get_se_name(info->se_type),
                        info->category == NET_NFC_CARD_EMULATION_CATEGORY_PAYMENT ? "payment" : "other",
@@ -1237,9 +1237,9 @@ static bool _display_route_table_cb(const char *package,
 
 static void __display_route_table()
 {
-       SECURE_LOGD(" +------------------------------------------------+");
+       DEBUG_SERVER_MSG(" +------------------------------------------------+");
        net_nfc_server_route_table_iterate_handler(_display_route_table_cb, NULL);
-       SECURE_LOGD(" +------------------------------------------------+");
+       DEBUG_SERVER_MSG(" +------------------------------------------------+");
 }
 #endif
 static bool __activation_iter_cb(const char *package,