Add logs to track the init process 13/320713/1 accepted/tizen_9.0_unified tizen_9.0 accepted/tizen/9.0/unified/20241125.071558
authorJaehyun Kim <jeik01.kim@samsung.com>
Thu, 21 Nov 2024 07:19:07 +0000 (16:19 +0900)
committerJaehyun Kim <jeik01.kim@samsung.com>
Thu, 21 Nov 2024 07:33:04 +0000 (16:33 +0900)
Change-Id: I68888d6d44e42d5f1e5b1b6322d6912b51798886
Signed-off-by: Jaehyun Kim <jeik01.kim@samsung.com>
src/internal/stc-dbus.c
src/internal/stc-signal.c

index 4f4cee63e30d0c4964bf08c55f875711377d86ab..736b9629c39ea33b9fc5f5018728fe1d4ce59121 100755 (executable)
@@ -78,7 +78,10 @@ int _stc_dbus_create(stc_h stc)
                return STC_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
        }
 
+       STC_LOGI("Connected to the D-BUS daemon [%p]", stc_handle->dbus_connection.connection);
+
        stc_handle->dbus_connection.cancellable = g_cancellable_new();
+       STC_LOGI("Cancellable object [%p]", stc_handle->dbus_connection.cancellable);
 
        return STC_ERROR_NONE;
 }
index e99e037b99992ea6adaff141c6a62c7a9ce4b10a..f4328ad172c6516d1be56d552071178f4a98acd5 100755 (executable)
@@ -188,6 +188,9 @@ int _stc_register_signal(stc_h stc)
                return STC_ERROR_NOT_INITIALIZED; //LCOV_EXCL_LINE
        }
 
+       STC_LOGI("Registered signals stats[%d] restriction[%d]",
+                       stc_handle->stats_subscribe_id, stc_handle->restriction_subscribe_id);
+
        return STC_ERROR_NONE;
 }