no need for full stack trace when system gesture lib is not found

This commit is contained in:
Helium314 2025-05-10 09:27:25 +02:00
parent 1f8a94f219
commit a1e05c847e

View file

@ -90,7 +90,7 @@ public final class JniUtils {
System.loadLibrary(JNI_LIB_NAME_GOOGLE);
sHaveGestureLib = true;
} catch (UnsatisfiedLinkError ul) {
Log.w(TAG, "Could not load system glide typing library " + JNI_LIB_NAME_GOOGLE, ul);
Log.w(TAG, "Could not load system glide typing library " + JNI_LIB_NAME_GOOGLE + ": " + ul.getMessage());
}
}
if (!sHaveGestureLib) {