summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-06-11 20:01:28 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-06-11 20:01:28 -0700
commitea6b8188320202da072285b08fe6c0ee5c3f71e5 (patch)
treecf0c38662a8454ff02a5bda38fa9630b14c25b0f /core/java/android
parentae20ae1a8aaa013813c356ae1d9541ca7ff020ae (diff)
parent265f1ccc5128319d81eee70ee2d2ae81573efb11 (diff)
Merge "Improve ANR diagnostics." into jb-dev
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/view/Choreographer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/Choreographer.java b/core/java/android/view/Choreographer.java
index 3072c672a531..78dc86f4dd94 100644
--- a/core/java/android/view/Choreographer.java
+++ b/core/java/android/view/Choreographer.java
@@ -493,7 +493,7 @@ public final class Choreographer {
if (jitterNanos >= mFrameIntervalNanos) {
final long skippedFrames = jitterNanos / mFrameIntervalNanos;
if (skippedFrames >= SKIPPED_FRAME_WARNING_LIMIT) {
- Log.w(TAG, "Skipped " + skippedFrames + " frames! "
+ Log.i(TAG, "Skipped " + skippedFrames + " frames! "
+ "The application may be doing too much work on its main thread.");
}
final long lastFrameOffset = jitterNanos % mFrameIntervalNanos;