From 35fe130142d40e341b67535e30bf95b99b0b6641 Mon Sep 17 00:00:00 2001 From: Magnus Erler <32124450+MagnusErler@users.noreply.github.com> Date: Wed, 17 Apr 2024 23:14:53 +0200 Subject: [PATCH] Bugfix: Wrong debug message in mw_wifi_scan.c --- lbm_lib/smtc_modem_core/geolocation_services/mw_wifi_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbm_lib/smtc_modem_core/geolocation_services/mw_wifi_scan.c b/lbm_lib/smtc_modem_core/geolocation_services/mw_wifi_scan.c index 778feac..0e129ac 100644 --- a/lbm_lib/smtc_modem_core/geolocation_services/mw_wifi_scan.c +++ b/lbm_lib/smtc_modem_core/geolocation_services/mw_wifi_scan.c @@ -391,7 +391,7 @@ static void wifi_rp_task_launch( void* context ) if( mw_radio_configure_for_scan( modem_get_radio_ctx( ) ) == false ) { - SMTC_MODEM_HAL_TRACE_ERROR( "gnss_rp_task_launch: mw_radio_configure_for_scan() failed\n" ); + SMTC_MODEM_HAL_TRACE_ERROR( "wifi_rp_task_launch: mw_radio_configure_for_scan() failed\n" ); rp_task_abort( modem_get_rp( ), RP_HOOK_ID_DIRECT_RP_ACCESS_WIFI ); return; }