summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-07-01 18:18:44 +0200
committerDoug Zongker <dougz@android.com>2010-07-02 00:42:28 +0200
commit3d177d055c9cf3571e4b7c098818b454d1dbf9d7 (patch)
tree1f9841903bccde2c88ee8be32aa507cccaa6b02e /common.h
parentMerge "support userdata and cache partitions using emmc/ext4 instead of mtd/yaffs" (diff)
downloadandroid_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.gz
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.bz2
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.lz
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.xz
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.tar.zst
android_bootable_recovery-3d177d055c9cf3571e4b7c098818b454d1dbf9d7.zip
Diffstat (limited to 'common.h')
-rw-r--r--common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common.h b/common.h
index a428dab90..333417f39 100644
--- a/common.h
+++ b/common.h
@@ -72,12 +72,12 @@ void ui_show_indeterminate_progress();
void ui_reset_progress();
#define LOGE(...) ui_print("E:" __VA_ARGS__)
-#define LOGW(...) fprintf(stderr, "W:" __VA_ARGS__)
-#define LOGI(...) fprintf(stderr, "I:" __VA_ARGS__)
+#define LOGW(...) fprintf(stdout, "W:" __VA_ARGS__)
+#define LOGI(...) fprintf(stdout, "I:" __VA_ARGS__)
#if 0
-#define LOGV(...) fprintf(stderr, "V:" __VA_ARGS__)
-#define LOGD(...) fprintf(stderr, "D:" __VA_ARGS__)
+#define LOGV(...) fprintf(stdout, "V:" __VA_ARGS__)
+#define LOGD(...) fprintf(stdout, "D:" __VA_ARGS__)
#else
#define LOGV(...) do {} while (0)
#define LOGD(...) do {} while (0)