summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-09-02 01:14:58 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-09-02 01:14:58 +0200
commitec6a47ae461ecdc78141b457acba1537d913e1e7 (patch)
treec22d18bfe3e836f9187f893042e9bc50b329a062 /common.h
parentMerge "Check an edge case when read(2) returns 0" am: 3202b8faf4 (diff)
parentMerge "Switch recovery to libbase logging" (diff)
downloadandroid_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.tar
android_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.tar.gz
android_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.tar.bz2
android_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.tar.lz
android_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.tar.xz
android_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.tar.zst
android_bootable_recovery-ec6a47ae461ecdc78141b457acba1537d913e1e7.zip
Diffstat (limited to 'common.h')
-rw-r--r--common.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/common.h b/common.h
index de8b409fd..a948fb1a0 100644
--- a/common.h
+++ b/common.h
@@ -21,18 +21,6 @@
#include <stdio.h>
#include <stdarg.h>
-#define LOGE(...) ui_print("E:" __VA_ARGS__)
-#define LOGW(...) fprintf(stdout, "W:" __VA_ARGS__)
-#define LOGI(...) fprintf(stdout, "I:" __VA_ARGS__)
-
-#if 0
-#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)
-#endif
-
#define STRINGIFY(x) #x
#define EXPAND(x) STRINGIFY(x)