diff options
author | Tianjie Xu <xunchang@google.com> | 2016-08-06 03:00:04 +0200 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2016-09-01 20:33:25 +0200 |
commit | 7b0ad9c638176dc364dabb65b363536055a0ea9c (patch) | |
tree | 73848b33067169c72788f517063c3d9659e783c0 /common.h | |
parent | Merge "minadbd: rename adb_server_main to minadbd_main." (diff) | |
download | android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.tar android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.tar.gz android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.tar.bz2 android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.tar.lz android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.tar.xz android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.tar.zst android_bootable_recovery-7b0ad9c638176dc364dabb65b363536055a0ea9c.zip |
Diffstat (limited to '')
-rw-r--r-- | common.h | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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) |