mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-09 16:17:44 +00:00
no need for full stack trace when system gesture lib is not found
This commit is contained in:
parent
1f8a94f219
commit
a1e05c847e
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue