Reduce log size from CountryTimeZones

ICU's TimeZone.toString() prints out too much information. Only the ID
is useful.

Bug: 149014708
Test: build only
Change-Id: I7d633f7946f82696e13dbc39749b6f9f44f83fa3
This commit is contained in:
Neil Fuller
2020-03-09 10:11:36 +00:00
parent 97c24fb167
commit 06795ef740

View File

@@ -140,7 +140,7 @@ public final class CountryTimeZones {
@Override
public String toString() {
return "OffsetResult{"
+ "mTimeZone=" + mTimeZone
+ "mTimeZone(ID)=" + mTimeZone.getID()
+ ", mIsOnlyMatch=" + mIsOnlyMatch
+ '}';
}