summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-09-02 01:04:37 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-09-02 01:04:37 +0200
commit61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca (patch)
treeb2d7cdcf7b401978c739d0449c76f92982d918a8 /common.h
parentMerge "Check an edge case when read(2) returns 0" (diff)
parentSwitch recovery to libbase logging (diff)
downloadandroid_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.tar
android_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.tar.gz
android_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.tar.bz2
android_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.tar.lz
android_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.tar.xz
android_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.tar.zst
android_bootable_recovery-61590bbf0d140ffa071eb14b17ae4c3dbc2be5ca.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)