Skip to content

Commit

Permalink
T32480634: Improve error message on SoSource Abi not supported
Browse files Browse the repository at this point in the history
Summary: Added error log message if soSource is not supported.

Differential Revision: D9312795

fbshipit-source-id: 8bcecc79c567892689126abb01c7d92f3d91d3c5
  • Loading branch information
Viktor Rusnak authored and facebook-github-bot committed Aug 15, 2018
1 parent 56ef6dd commit a799c20
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions java/com/facebook/soloader/SoLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,7 @@ public static boolean areSoSourcesAbisSupported() {
soSourceSupported = soSourceAbis[j].equals(supportedAbis[k]);
}
if (!soSourceSupported) {
Log.e(TAG, "abi not supported: " + soSourceAbis[j]);
return false;
}
}
Expand Down

0 comments on commit a799c20

Please sign in to comment.