diff options
author | Wei Wang <wvw@google.com> | 2017-02-07 18:59:58 -0800 |
---|---|---|
committer | Wei Wang <wvw@google.com> | 2017-02-07 18:59:58 -0800 |
commit | dbdda2b60ec440f2b140343e08aeff2d9c6cbcc5 (patch) | |
tree | 0193bdb46799da0a8686df09e843d45eaaa39079 /cmds/bootanimation/BootAnimation.cpp | |
parent | cbfae3e15c5863dc6e8ed2294c54ecbfaf55d412 (diff) |
BootAnimation: change log format when animation starts
Bug: 34499826
Test: on marlin
Change-Id: I719485d399406abc08360620c09d90f4b87934a6
Diffstat (limited to 'cmds/bootanimation/BootAnimation.cpp')
-rw-r--r-- | cmds/bootanimation/BootAnimation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp index 79017378c909..a6d2986e185a 100644 --- a/cmds/bootanimation/BootAnimation.cpp +++ b/cmds/bootanimation/BootAnimation.cpp @@ -352,7 +352,7 @@ bool BootAnimation::threadLoop() bool BootAnimation::android() { - ALOGD("BootAnimationShownTiming: BootAnimation start time: %" PRId64 "ms", elapsedRealtime()); + ALOGD("BootAnimationShownTiming start time: %" PRId64 "ms", elapsedRealtime()); initTexture(&mAndroid[0], mAssets, "images/android-logo-mask.png"); initTexture(&mAndroid[1], mAssets, "images/android-logo-shine.png"); @@ -878,7 +878,7 @@ bool BootAnimation::playAnimation(const Animation& animation) const int animationX = (mWidth - animation.width) / 2; const int animationY = (mHeight - animation.height) / 2; - ALOGD("BootAnimationShownTiming: BootAnimation start time: %" PRId64 "ms", elapsedRealtime()); + ALOGD("BootAnimationShownTiming start time: %" PRId64 "ms", elapsedRealtime()); for (size_t i=0 ; i<pcount ; i++) { const Animation::Part& part(animation.parts[i]); const size_t fcount = part.frames.size(); |