Remove the LOGV guard from the categorization log statement.
Because this activity is not used too frequently, removing the guard will allow us to collect data w/o being too verbose. Bug: 32914999 Test: Manual Change-Id: Iccd2cabe0c77533c0f62eaf202738529b135979c
This commit is contained in:
@@ -636,12 +636,11 @@ public class PrivateVolumeSettings extends SettingsPreferenceFragment {
|
||||
final long usedSize = mTotalSize - details.availSize;
|
||||
final long unaccountedSize = usedSize - accountedSize;
|
||||
final long otherSize = totalMiscSize + totalDownloadsSize + unaccountedSize;
|
||||
if (LOGV)
|
||||
Log.v(TAG, "Other items: \n\tmTotalSize: " + mTotalSize + " availSize: "
|
||||
+ details.availSize + " usedSize: " + usedSize + "\n\taccountedSize: "
|
||||
+ accountedSize + " unaccountedSize size: " + unaccountedSize
|
||||
+ "\n\ttotalMiscSize: " + totalMiscSize + " totalDownloadsSize: "
|
||||
+ totalDownloadsSize + "\n\tdetails: " + details);
|
||||
Log.v(TAG, "Other items: \n\tmTotalSize: " + mTotalSize + " availSize: "
|
||||
+ details.availSize + " usedSize: " + usedSize + "\n\taccountedSize: "
|
||||
+ accountedSize + " unaccountedSize size: " + unaccountedSize
|
||||
+ "\n\ttotalMiscSize: " + totalMiscSize + " totalDownloadsSize: "
|
||||
+ totalDownloadsSize + "\n\tdetails: " + details);
|
||||
updatePreference(otherItem, otherSize);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user