diff options
author | Siva Velusamy <vsiva@google.com> | 2011-10-10 14:25:44 -0700 |
---|---|---|
committer | Siva Velusamy <vsiva@google.com> | 2011-10-10 14:25:44 -0700 |
commit | 235d6998cd7538f3e1c845e18c63ffc189a6c637 (patch) | |
tree | 3d47280e15c4981d1fff584b33f3a9956ead3941 /ddms/libs | |
parent | a6dc10887d24122fa8a9d8b590ac7eff2c36724c (diff) | |
download | sdk-235d6998cd7538f3e1c845e18c63ffc189a6c637.zip sdk-235d6998cd7538f3e1c845e18c63ffc189a6c637.tar.gz sdk-235d6998cd7538f3e1c845e18c63ffc189a6c637.tar.bz2 |
Remove non-actionable log statement.
Change-Id: I18064d048603c61a5f7d046bbb4cdb39181159de
Diffstat (limited to 'ddms/libs')
-rw-r--r-- | ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java b/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java index 35cef96..d918807 100644 --- a/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java +++ b/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java @@ -18,7 +18,6 @@ package com.android.ddmuilib.logcat; import com.android.ddmlib.DdmConstants; import com.android.ddmlib.IDevice; -import com.android.ddmlib.Log; import com.android.ddmlib.Log.LogLevel; import com.android.ddmuilib.ITableFocusListener; import com.android.ddmuilib.ImageLoader; @@ -124,8 +123,6 @@ public final class LogCatPanel extends SelectionDependentPanel private static final int[] WEIGHTS_SHOW_FILTERS = new int[] {15, 85}; private static final int[] WEIGHTS_LOGCAT_ONLY = new int[] {0, 100}; - private static final String LOG_TAG = "LogCatPanel"; - private LogCatReceiver mReceiver; private IPreferenceStore mPrefStore; @@ -223,7 +220,6 @@ public final class LogCatPanel extends SelectionDependentPanel if (device == null) { // If the device is not working properly, getCurrentDevice() could return null. // In such a case, we don't launch logcat, nor switch the display. - Log.e(LOG_TAG, "Device selected, but getCurrentDevice() == null"); return; } |