Modify the log level 81/308681/2 accepted/tizen_unified accepted/tizen_unified_x accepted/tizen/unified/20240404.164416 accepted/tizen/unified/x/20240408.053710
authorWootak Jung <wootak.jung@samsung.com>
Thu, 28 Mar 2024 23:25:24 +0000 (08:25 +0900)
committerWootak Jung <wootak.jung@samsung.com>
Thu, 28 Mar 2024 23:45:35 +0000 (08:45 +0900)
When the app terminates, name will be printed as info level

Change-Id: I4bb71fee958bd973d44bc35acd03fb0d4c1f463c
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
bt-service/services/bt-request-handler.c
bt-service/services/gatt/bt-service-gatt.c

index e8fce01..5a2f90a 100644 (file)
@@ -5469,7 +5469,7 @@ gboolean __bt_service_check_privilege(int function_name,
                return FALSE;
        }
 
-       BT_DBG("%s, %s, %s", unique_name, client_creds, user_creds);
+       BT_INFO("%s, %s, %s", unique_name, client_creds, user_creds);
 
        switch (function_name) {
        case BT_SET_LOCAL_NAME:
index f59e04e..56f01ba 100644 (file)
@@ -317,7 +317,7 @@ void _bt_check_adv_app_termination(const char *name)
 
                /* Search for a app which has same sender and stop adv is running */
                if (strcasecmp(app->sender, name) == 0 && app->is_initialized == TRUE) {
-                       BT_DBG("numapps[%d] Match found, name: %s", k, name);
+                       BT_INFO("numapps[%d] Match found, name: %s", k, name);
 
                        /* TODO 2: Need to manage app info as list, not array.
                                   This loop always run for MAX count if any apps are terminated.