diff options
author | Steve Block <steveblock@google.com> | 2012-01-08 10:18:45 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-08 11:03:25 +0000 |
commit | 98d12a6a6b49cb23cd04178ac23c955603e050b9 (patch) | |
tree | 801ec2a6c67a58d2813b7ac672855b8690dbb09c /libtiutils | |
parent | 415162e2ae498b32447d6e5ab580d9c3d6b9accd (diff) | |
download | hardware_ti_omap4-98d12a6a6b49cb23cd04178ac23c955603e050b9.zip hardware_ti_omap4-98d12a6a6b49cb23cd04178ac23c955603e050b9.tar.gz hardware_ti_omap4-98d12a6a6b49cb23cd04178ac23c955603e050b9.tar.bz2 |
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220
Bug: 5449033
Change-Id: I7d131473964d92c62a495d082a1207867f435885
Diffstat (limited to 'libtiutils')
-rw-r--r-- | libtiutils/DebugUtils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtiutils/DebugUtils.h b/libtiutils/DebugUtils.h index 27f823d..f421252 100644 --- a/libtiutils/DebugUtils.h +++ b/libtiutils/DebugUtils.h @@ -24,8 +24,8 @@ #define DBGUTILS_LOGVB(str,...) ALOGV("%s:%d %s - " str,__FILE__, __LINE__, __FUNCTION__, __VA_ARGS__); #define DBGUTILS_LOGDA(str) ALOGD("%s:%d %s - " str,__FILE__, __LINE__,__FUNCTION__); #define DBGUTILS_LOGDB(str, ...) ALOGD("%s:%d %s - " str,__FILE__, __LINE__, __FUNCTION__, __VA_ARGS__); -#define DBGUTILS_LOGEA(str) LOGE("%s:%d %s - " str,__FILE__, __LINE__, __FUNCTION__); -#define DBGUTILS_LOGEB(str, ...) LOGE("%s:%d %s - " str,__FILE__, __LINE__,__FUNCTION__, __VA_ARGS__); +#define DBGUTILS_LOGEA(str) ALOGE("%s:%d %s - " str,__FILE__, __LINE__, __FUNCTION__); +#define DBGUTILS_LOGEB(str, ...) ALOGE("%s:%d %s - " str,__FILE__, __LINE__,__FUNCTION__, __VA_ARGS__); #define LOG_FUNCTION_NAME ALOGV("%d: %s() ENTER", __LINE__, __FUNCTION__); #define LOG_FUNCTION_NAME_EXIT ALOGV("%d: %s() EXIT", __LINE__, __FUNCTION__); |