1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-26 14:21:16 +00:00

Merge pull request #720 from capi/logging-issue-700

Log SSID whitelist for better troubleshooting of #700
This commit is contained in:
Felix Ableitner 2016-08-11 23:25:03 +02:00 committed by GitHub
commit 239c9d3238

View file

@ -269,10 +269,10 @@ public class SyncthingService extends Service implements
String ssid = mDeviceStateHolder.getWifiSsid();
if (ssid != null) {
if (ssids.contains(ssid)) {
Log.d(TAG, "SSID " + ssid + " found in whitelist");
Log.d(TAG, "SSID [" + ssid + "] found in whitelist: " + ssids);
return true;
}
Log.i(TAG, "SSID " + ssid + " not whitelisted");
Log.i(TAG, "SSID [" + ssid + "] not whitelisted: " + ssids);
return false;
} else {
// Don't know the SSID (yet) (should not happen?!), so not allowing