@@ -54,7 +54,7 @@ public AppWindowAnimator(final WindowManagerService service, final AppWindowToke
5454
5555 public void setAnimation (Animation anim , boolean initialized ) {
5656 if (WindowManagerService .localLOGV ) Slog .v (
57- TAG , "Setting animation in " + this + ": " + anim );
57+ TAG , "Setting animation in " + mAppToken + ": " + anim );
5858 animation = anim ;
5959 animating = false ;
6060 animInitialized = initialized ;
@@ -81,7 +81,7 @@ public void setAnimation(Animation anim, boolean initialized) {
8181 public void setDummyAnimation () {
8282 if (animation == null ) {
8383 if (WindowManagerService .localLOGV ) Slog .v (
84- TAG , "Setting dummy animation in " + this );
84+ TAG , "Setting dummy animation in " + mAppToken );
8585 animation = sDummyAnimation ;
8686 animInitialized = false ;
8787 }
@@ -165,12 +165,12 @@ private boolean stepAnimation(long currentTime) {
165165 transformation .clear ();
166166 final boolean more = animation .getTransformation (currentTime , transformation );
167167 if (WindowManagerService .DEBUG_ANIM ) Slog .v (
168- TAG , "Stepped animation in " + this + ": more=" + more + ", xform=" + transformation );
168+ TAG , "Stepped animation in " + mAppToken + ": more=" + more + ", xform=" + transformation );
169169 if (!more ) {
170170 animation = null ;
171171 clearThumbnail ();
172172 if (WindowManagerService .DEBUG_ANIM ) Slog .v (
173- TAG , "Finished animation in " + this + " @ " + currentTime );
173+ TAG , "Finished animation in " + mAppToken + " @ " + currentTime );
174174 }
175175 hasTransformation = more ;
176176 return more ;
@@ -195,7 +195,7 @@ boolean stepAnimationLocked(long currentTime, int dw, int dh) {
195195 && animation != null ) {
196196 if (!animating ) {
197197 if (WindowManagerService .DEBUG_ANIM ) Slog .v (
198- TAG , "Starting animation in " + this +
198+ TAG , "Starting animation in " + mAppToken +
199199 " @ " + currentTime + ": dw=" + dw + " dh=" + dh
200200 + " scale=" + mService .mTransitionAnimationScale
201201 + " allDrawn=" + mAppToken .allDrawn + " animating=" + animating );
@@ -248,7 +248,7 @@ boolean stepAnimationLocked(long currentTime, int dw, int dh) {
248248 }
249249
250250 if (WindowManagerService .DEBUG_ANIM ) Slog .v (
251- TAG , "Animation done in " + this
251+ TAG , "Animation done in " + mAppToken
252252 + ": reportedVisible=" + mAppToken .reportedVisible );
253253
254254 transformation .clear ();
0 commit comments