base-sim: include GID1/GID2 loaded values in info level

This commit is contained in:
Aleksander Morgado
2022-11-04 11:18:47 +00:00
parent ceee8938e8
commit fa0cfd4c4d

View File

@@ -2534,6 +2534,12 @@ initable_init_finish (GAsyncInitable *initable,
\ \
if (error) \ if (error) \
mm_obj_dbg (self, "couldn't load %s: %s", DISPLAY, error->message); \ mm_obj_dbg (self, "couldn't load %s: %s", DISPLAY, error->message); \
else { \
g_autofree gchar *bytearray_str = NULL; \
\
bytearray_str = mm_utils_bin2hexstr (bytearray->data, bytearray->len); \
mm_obj_info (self, "loaded %s: %s", DISPLAY, bytearray_str); \
} \
\ \
/* Go on to next step */ \ /* Go on to next step */ \
ctx = g_task_get_task_data (task); \ ctx = g_task_get_task_data (task); \