Merge "Add log for new error string in WiFi QR code scanning" into main

This commit is contained in:
Treehugger Robot
2024-10-07 07:33:29 +00:00
committed by Android (Google) Code Review

View File

@@ -276,8 +276,10 @@ public class WifiDppQrCodeScannerFragment extends WifiDppQrCodeBaseFragment impl
} }
} }
if (canFindNetwork) { if (canFindNetwork) {
Log.e(TAG, "WiFi DPP check connection no matched security");
return R.string.wifi_dpp_check_connection_no_matched_security; return R.string.wifi_dpp_check_connection_no_matched_security;
} }
Log.e(TAG, "WiFi DPP check connection no matched SSID");
return R.string.wifi_dpp_check_connection_no_matched_ssid; return R.string.wifi_dpp_check_connection_no_matched_ssid;
} }