diff options
| author | 2012-01-04 10:13:13 -0800 | |
|---|---|---|
| committer | 2012-01-04 10:13:13 -0800 | |
| commit | 41891aeaf4e6e4006ae3087fa537786e9ec8caa4 (patch) | |
| tree | 919fcb8f1583cb4357f16468b1fc6eaf1a5b0144 /cmds/bootanimation/BootAnimation.cpp | |
| parent | 7c48707a9d320230452d5937239f28ab0ea2e695 (diff) | |
| parent | 5baa3a62a97544669fba6d65a11c07f252e654dd (diff) | |
Merge "Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE"
Diffstat (limited to 'cmds/bootanimation/BootAnimation.cpp')
| -rw-r--r-- | cmds/bootanimation/BootAnimation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp index 154dbb873575..f2503671b645 100644 --- a/cmds/bootanimation/BootAnimation.cpp +++ b/cmds/bootanimation/BootAnimation.cpp @@ -83,7 +83,7 @@ sp<SurfaceComposerClient> BootAnimation::session() const { void BootAnimation::binderDied(const wp<IBinder>& who) { // woah, surfaceflinger died! - LOGD("SurfaceFlinger died, exiting..."); + ALOGD("SurfaceFlinger died, exiting..."); // calling requestExit() is not enough here because the Surface code // might be blocked on a condition variable that will never be updated. @@ -394,13 +394,13 @@ bool BootAnimation::movie() int fps, width, height, count, pause; char path[256]; if (sscanf(l, "%d %d %d", &width, &height, &fps) == 3) { - //LOGD("> w=%d, h=%d, fps=%d", fps, width, height); + //ALOGD("> w=%d, h=%d, fps=%d", fps, width, height); animation.width = width; animation.height = height; animation.fps = fps; } if (sscanf(l, "p %d %d %s", &count, &pause, path) == 3) { - //LOGD("> count=%d, pause=%d, path=%s", count, pause, path); + //ALOGD("> count=%d, pause=%d, path=%s", count, pause, path); Animation::Part part; part.count = count; part.pause = pause; |