mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 01:46:49 +00:00
Remove unused debug logs
Removing debug logs for bugs that have already been closed. These logs are filling up the logcat buffer and impeding in other test investigations. Flag: not needed Test: Tapl tests Bug: 260260325 Change-Id: I4d69b904f2ea79d758cf6bef7d90d172f2eb2a91
This commit is contained in:
@@ -65,7 +65,6 @@ import com.android.launcher3.R;
|
||||
import com.android.launcher3.Utilities;
|
||||
import com.android.launcher3.anim.AnimatedFloat;
|
||||
import com.android.launcher3.anim.AnimatorListeners;
|
||||
import com.android.launcher3.testing.shared.TestProtocol;
|
||||
import com.android.launcher3.util.DisplayController;
|
||||
import com.android.launcher3.util.MultiPropertyFactory.MultiProperty;
|
||||
import com.android.quickstep.SystemUiProxy;
|
||||
@@ -1021,10 +1020,6 @@ public class TaskbarStashController implements TaskbarControllers.LoggableTaskba
|
||||
* unstashed.
|
||||
*/
|
||||
public void updateStateForFlag(int flag, boolean enabled) {
|
||||
if (flag == FLAG_IN_APP && TestProtocol.sDebugTracing) {
|
||||
Log.d(TestProtocol.TASKBAR_IN_APP_STATE, String.format(
|
||||
"setting flag FLAG_IN_APP to: %b", enabled), new Exception());
|
||||
}
|
||||
if (enabled) {
|
||||
mState |= flag;
|
||||
} else {
|
||||
@@ -1249,16 +1244,6 @@ public class TaskbarStashController implements TaskbarControllers.LoggableTaskba
|
||||
&& animationType != TRANSITION_DEFAULT;
|
||||
|
||||
if (mIsStashed != isStashed || transitionTypeChanged) {
|
||||
if (TestProtocol.sDebugTracing) {
|
||||
Log.d(TestProtocol.TASKBAR_IN_APP_STATE, String.format(
|
||||
"setState: mIsStashed=%b, isStashed=%b, "
|
||||
+ "mAnimationType=%d, animationType=%d, duration=%d",
|
||||
mIsStashed,
|
||||
isStashed,
|
||||
mLastStartedTransitionType,
|
||||
animationType,
|
||||
duration));
|
||||
}
|
||||
mIsStashed = isStashed;
|
||||
mLastStartedTransitionType = animationType;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user