Skip to content
Snippets Groups Projects
Commit a5b1d92e authored by akwizgran's avatar akwizgran
Browse files

Log discovered devices to track down discovery bugs.

parent afb6a185
No related branches found
No related tags found
No related merge requests found
......@@ -461,6 +461,8 @@ class DroidtoothPlugin implements DuplexPlugin {
finished.countDown();
} else if(action.equals(FOUND)) {
BluetoothDevice d = intent.getParcelableExtra(EXTRA_DEVICE);
if(LOG.isLoggable(INFO))
LOG.info("Discovered device: " + d.getAddress());
addresses.add(d.getAddress());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment