Merge "Redact key value from log when DEBUG is false"

This commit is contained in:
Suprabh Shukla
2021-09-29 23:25:21 +00:00
committed by Gerrit Code Review

View File

@@ -645,7 +645,7 @@ public final class ArrayMap<K, V> implements Map<K, V> {
e.fillInStackTrace();
Log.w(TAG, "New hash " + hash
+ " is before end of array hash " + mHashes[index-1]
+ " at index " + index + " key " + key, e);
+ " at index " + index + (DEBUG ? " key " + key : ""), e);
put(key, value);
return;
}