summaryrefslogtreecommitdiffstats
path: root/libtiutils
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:25:43 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:32:05 +0000
commit3a7df2c042eb8c7289e24e77dd316f73bd0c456f (patch)
tree7627cc735bb5a8c67d58b6ac54bbfe9ab5d9054f /libtiutils
parente2fbd59c26e871f0a2c766aa8a7150844d74e6a3 (diff)
downloadhardware_ti_omap4xxx-3a7df2c042eb8c7289e24e77dd316f73bd0c456f.zip
hardware_ti_omap4xxx-3a7df2c042eb8c7289e24e77dd316f73bd0c456f.tar.gz
hardware_ti_omap4xxx-3a7df2c042eb8c7289e24e77dd316f73bd0c456f.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I551e5a040249a8908251cd8c8d7131287f1f53de
Diffstat (limited to 'libtiutils')
-rw-r--r--libtiutils/DebugUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtiutils/DebugUtils.h b/libtiutils/DebugUtils.h
index a8734b7..27f823d 100644
--- a/libtiutils/DebugUtils.h
+++ b/libtiutils/DebugUtils.h
@@ -22,8 +22,8 @@
///Defines for debug statements - Macro LOG_TAG needs to be defined in the respective files
#define DBGUTILS_LOGVA(str) ALOGV("%s:%d %s - " str,__FILE__, __LINE__,__FUNCTION__);
#define DBGUTILS_LOGVB(str,...) ALOGV("%s:%d %s - " str,__FILE__, __LINE__, __FUNCTION__, __VA_ARGS__);
-#define DBGUTILS_LOGDA(str) LOGD("%s:%d %s - " str,__FILE__, __LINE__,__FUNCTION__);
-#define DBGUTILS_LOGDB(str, ...) LOGD("%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 LOG_FUNCTION_NAME ALOGV("%d: %s() ENTER", __LINE__, __FUNCTION__);