summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-06-23 12:09:39 -0700
committerYorke Lee <yorkelee@google.com>2015-06-23 12:44:43 -0700
commita466fa573fe41ca818bfdf3d8c89a752b7dd1c35 (patch)
tree1dd0f2cf2dccd375cdb6b14e1107a709cd031eb3 /InCallUI
parent52714642784baa08d463ae225fec74c98dddf087 (diff)
Don't wtf if second InCallActivity is set
Setting a second InCallActivity before destroying the first is unexpected but not irrecoverable, so don't crash. Bug: 21806586 Change-Id: I817041ff6bae900c3b9f225ec66fe223c877e68d
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/src/com/android/incallui/InCallPresenter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallPresenter.java b/InCallUI/src/com/android/incallui/InCallPresenter.java
index 47342956c..05044cb75 100644
--- a/InCallUI/src/com/android/incallui/InCallPresenter.java
+++ b/InCallUI/src/com/android/incallui/InCallPresenter.java
@@ -270,7 +270,7 @@ public class InCallPresenter implements CallList.Listener,
throw new IllegalArgumentException("registerActivity cannot be called with null");
}
if (mInCallActivity != null && mInCallActivity != inCallActivity) {
- Log.wtf(this, "Setting a second activity before destroying the first.");
+ Log.w(this, "Setting a second activity before destroying the first.");
}
updateActivity(inCallActivity);
}