Merge "Remove the LOGV guard from the categorization log statement."

This commit is contained in:
Daniel Nishi
2017-01-10 21:26:37 +00:00
committed by Android (Google) Code Review

View File

@@ -636,12 +636,11 @@ public class PrivateVolumeSettings extends SettingsPreferenceFragment {
final long usedSize = mTotalSize - details.availSize; final long usedSize = mTotalSize - details.availSize;
final long unaccountedSize = usedSize - accountedSize; final long unaccountedSize = usedSize - accountedSize;
final long otherSize = totalMiscSize + totalDownloadsSize + unaccountedSize; final long otherSize = totalMiscSize + totalDownloadsSize + unaccountedSize;
if (LOGV) Log.v(TAG, "Other items: \n\tmTotalSize: " + mTotalSize + " availSize: "
Log.v(TAG, "Other items: \n\tmTotalSize: " + mTotalSize + " availSize: " + details.availSize + " usedSize: " + usedSize + "\n\taccountedSize: "
+ details.availSize + " usedSize: " + usedSize + "\n\taccountedSize: " + accountedSize + " unaccountedSize size: " + unaccountedSize
+ accountedSize + " unaccountedSize size: " + unaccountedSize + "\n\ttotalMiscSize: " + totalMiscSize + " totalDownloadsSize: "
+ "\n\ttotalMiscSize: " + totalMiscSize + " totalDownloadsSize: " + totalDownloadsSize + "\n\tdetails: " + details);
+ totalDownloadsSize + "\n\tdetails: " + details);
updatePreference(otherItem, otherSize); updatePreference(otherItem, otherSize);
} }
} }