Fix mismatched function call
[platform/core/connectivity/wifi-mesh-manager.git] / src / mesh-interface.c
index db65640..189fff0 100644 (file)
@@ -252,6 +252,13 @@ int mesh_interface_initialize(mesh_interface_s *info)
        info->softap_interface = g_strdup(MESH_DEFAULT_SOFTAP_INTERFACE);
        info->external_interface = g_strdup(MESH_DEFAULT_EXTERNAL_INTERFACE);
 
+       MESH_LOGD("Interface configuration for mesh network :");
+       MESH_LOGD("  Base    : [%s]", info->base_interface);
+       MESH_LOGD("  Mesh    : [%s]", info->mesh_interface);
+       MESH_LOGD("  Bridge  : [%s]", info->bridge_interface);
+       MESH_LOGD("  SoftAP  : [%s]", info->softap_interface);
+       MESH_LOGD("  External: [%s]", info->external_interface);
+
        return MESHD_ERROR_NONE;
 }