diff options
author | Sharvil Nanavati <sharvil@google.com> | 2014-12-23 23:08:58 -0800 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2015-03-16 16:51:40 -0700 |
commit | 44802768c447ab480d4227b3a852a97d923b816d (patch) | |
tree | 52f2bdda1fa934f89af3b2161a26cb47170f8567 /stack/sdp/sdp_api.c | |
parent | 3b24dfb998e76b389b9c850f53e0c8016383f2b8 (diff) | |
download | android_system_bt-44802768c447ab480d4227b3a852a97d923b816d.tar.gz android_system_bt-44802768c447ab480d4227b3a852a97d923b816d.tar.bz2 android_system_bt-44802768c447ab480d4227b3a852a97d923b816d.zip |
Add platform-independent logging macros to OSI.
These macros should replace ALOG* and the various trace macros
used throughout bluedroid. This change eliminates all uses of the
ALOG* macros in favor of the new ones.
Diffstat (limited to 'stack/sdp/sdp_api.c')
-rw-r--r-- | stack/sdp/sdp_api.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/stack/sdp/sdp_api.c b/stack/sdp/sdp_api.c index fa807b261..890f808bf 100644 --- a/stack/sdp/sdp_api.c +++ b/stack/sdp/sdp_api.c @@ -37,13 +37,6 @@ #include "sdpint.h" #include "btu.h" -#include <cutils/log.h> -#define info(fmt, ...) LOGI ("%s: " fmt,__FUNCTION__, ## __VA_ARGS__) -#define debug(fmt, ...) LOGD ("%s: " fmt,__FUNCTION__, ## __VA_ARGS__) -#define error(fmt, ...) LOGE ("## ERROR : %s: " fmt "##",__FUNCTION__, ## __VA_ARGS__) -#define asrt(s) if(!(s)) LOGE ("## %s assert %s failed at line:%d ##",__FUNCTION__, #s, __LINE__) - - /********************************************************************** ** C L I E N T F U N C T I O N P R O T O T Y P E S * ***********************************************************************/ |