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

This commit is contained in:
Jeff Sharkey
2016-04-11 05:50:39 +00:00
committed by Android (Google) Code Review

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);
}