From 985bb59879cf91c54b29752494bd53882592ebf2 Mon Sep 17 00:00:00 2001 From: Daniel Nishi Date: Wed, 4 Jan 2017 16:45:26 -0800 Subject: [PATCH] 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 --- .../settings/deviceinfo/PrivateVolumeSettings.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/com/android/settings/deviceinfo/PrivateVolumeSettings.java b/src/com/android/settings/deviceinfo/PrivateVolumeSettings.java index e63a1df11ca..b0a99026cd7 100644 --- a/src/com/android/settings/deviceinfo/PrivateVolumeSettings.java +++ b/src/com/android/settings/deviceinfo/PrivateVolumeSettings.java @@ -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); } }