summaryrefslogtreecommitdiff
path: root/java/com/android/incallui
diff options
context:
space:
mode:
authorwangqi <wangqi@google.com>2017-09-20 11:42:17 -0700
committerEric Erfanian <erfanian@google.com>2017-09-20 13:36:23 -0700
commita6ac6b5eb080a7de2352e8dd9e5105fc7d86b289 (patch)
treea52b93f52085b17b739ac484dcf0868d743dc962 /java/com/android/incallui
parent12da0b8101b77cbdbdd5754b667c4f122512b3c3 (diff)
Add more logging when video surface texture is destroyed.
Bug: 63608380 Test: none PiperOrigin-RevId: 169425768 Change-Id: I297b945c9601bb070f3ef08d7ca34a76629b42c7
Diffstat (limited to 'java/com/android/incallui')
-rw-r--r--java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java b/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java
index 6ce564a87..fa757247d 100644
--- a/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java
+++ b/java/com/android/incallui/videosurface/impl/VideoSurfaceTextureImpl.java
@@ -220,10 +220,10 @@ public class VideoSurfaceTextureImpl implements VideoSurfaceTexture {
public boolean onSurfaceTextureDestroyed(SurfaceTexture destroyedSurfaceTexture) {
LogUtil.i(
"SurfaceTextureListener.onSurfaceTextureDestroyed",
- "destroyedSurfaceTexture: "
- + destroyedSurfaceTexture
- + " "
- + VideoSurfaceTextureImpl.this.toString());
+ "destroyedSurfaceTexture: %s, %s, isDoneWithSurface: %b",
+ destroyedSurfaceTexture,
+ VideoSurfaceTextureImpl.this.toString(),
+ isDoneWithSurface);
if (delegate != null) {
delegate.onSurfaceDestroyed(VideoSurfaceTextureImpl.this);
} else {