[Android] Hide logs in release
Geoffrey Métais
git at videolan.org
Wed Jun 29 12:18:12 CEST 2016
vlc-android | branch: 2.0.x | Geoffrey Métais <geoffrey.metais at gmail.com> | Tue Jun 28 16:31:12 2016 +0200| [7c93c6a284f4a692c00c07b1e122ad07cdaded2a] | committer: Geoffrey Métais
Hide logs in release
(cherry picked from commit f8dff2f9323cbac31817d306ad60d49e94517cad)
> https://code.videolan.org/videolan/vlc-android/commit/7c93c6a284f4a692c00c07b1e122ad07cdaded2a
---
vlc-android/src/com/android/widget/SlidingPaneLayout.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/vlc-android/src/com/android/widget/SlidingPaneLayout.java b/vlc-android/src/com/android/widget/SlidingPaneLayout.java
index 19e8084..6a0c635 100644
--- a/vlc-android/src/com/android/widget/SlidingPaneLayout.java
+++ b/vlc-android/src/com/android/widget/SlidingPaneLayout.java
@@ -366,7 +366,7 @@ public class SlidingPaneLayout extends ViewGroup {
final int childCount = getChildCount();
if (childCount > 2) {
- Log.e(TAG, "onMeasure: More than two child views are not supported.");
+ if (BuildConfig.DEBUG) Log.e(TAG, "onMeasure: More than two child views are not supported.");
}
// We'll find the current one below.
@@ -1037,13 +1037,13 @@ public class SlidingPaneLayout extends ViewGroup {
try {
mGetDisplayList = View.class.getDeclaredMethod("getDisplayList", (Class[]) null);
} catch (NoSuchMethodException e) {
- Log.e(TAG, "Couldn't fetch getDisplayList method; dimming won't work right.", e);
+ if (BuildConfig.DEBUG) Log.e(TAG, "Couldn't fetch getDisplayList method; dimming won't work right.", e);
}
try {
mRecreateDisplayList = View.class.getDeclaredField("mRecreateDisplayList");
mRecreateDisplayList.setAccessible(true);
} catch (NoSuchFieldException e) {
- Log.e(TAG, "Couldn't fetch mRecreateDisplayList field; dimming will be slow.", e);
+ if (BuildConfig.DEBUG) Log.e(TAG, "Couldn't fetch mRecreateDisplayList field; dimming will be slow.", e);
}
}
@@ -1054,7 +1054,7 @@ public class SlidingPaneLayout extends ViewGroup {
mRecreateDisplayList.setBoolean(child, true);
mGetDisplayList.invoke(child, (Object[]) null);
} catch (Exception e) {
- Log.e(TAG, "Error refreshing display list state", e);
+ if (BuildConfig.DEBUG) Log.e(TAG, "Error refreshing display list state", e);
}
} else {
// Slow path. REALLY slow path. Let's hope we don't get here.
More information about the Android
mailing list