Commit 68e1731e02fab9f94b51bc739932547c3a651ee2

Sam Lantinga 2020-05-29T15:40:17

Don't bother logging security exception getting the device serial number This can happen anytime we haven't opened the device yet

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java b/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java
index efcb7b1..d20fe80 100644
--- a/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java
+++ b/android-project/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java
@@ -57,8 +57,7 @@ class HIDDeviceUSB implements HIDDevice {
                 result = mDevice.getSerialNumber();
             }
             catch (SecurityException exception) {
-                Log.w(TAG, "App permissions mean we cannot get serial number for device " + getDeviceName() + " message: " + exception.getMessage());
-                result = "";
+                //Log.w(TAG, "App permissions mean we cannot get serial number for device " + getDeviceName() + " message: " + exception.getMessage());
             }
         }
         if (result == null) {