Merge "Relax SparseMappingTable Slog.wtf()." into nyc-dev

am: f06de20

* commit 'f06de20835e5a372731b7359d0728dc93dac6d50':
  Relax SparseMappingTable Slog.wtf().

Change-Id: I2c7a784c2ee075fc806641acb10307aa482ff4a2
This commit is contained in:
Jeff Sharkey
2016-04-11 05:55:00 +00:00
committed by android-build-merger

View File

@@ -629,7 +629,7 @@ public class SparseMappingTable {
* this is an eng build.)
*/
private static void logOrThrow(String message, Throwable th) {
Slog.wtf(TAG, message, th);
Slog.e(TAG, message, th);
if (Build.TYPE.equals("eng")) {
throw new RuntimeException(message, th);
}