diff options
author | Chris Manton <cmanton@google.com> | 2015-03-12 09:22:48 -0700 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2015-03-16 16:51:49 -0700 |
commit | f8027005333c88a2f097cfd70d15c3d54c7764ae (patch) | |
tree | 3f256e99e92e8b07ac6865e6b3dc260fed67578c /osi/src | |
parent | 72a1c0904bbbaf2e8c7a8c559f6ab695e3a16b2a (diff) | |
download | android_system_bt-f8027005333c88a2f097cfd70d15c3d54c7764ae.tar.gz android_system_bt-f8027005333c88a2f097cfd70d15c3d54c7764ae.tar.bz2 android_system_bt-f8027005333c88a2f097cfd70d15c3d54c7764ae.zip |
Demote, cleanup and extend observed logging
Diffstat (limited to 'osi/src')
-rw-r--r-- | osi/src/allocation_tracker.c | 2 | ||||
-rw-r--r-- | osi/src/array.c | 2 | ||||
-rw-r--r-- | osi/src/buffer.c | 2 | ||||
-rw-r--r-- | osi/src/eager_reader.c | 2 | ||||
-rw-r--r-- | osi/src/future.c | 2 | ||||
-rw-r--r-- | osi/src/semaphore.c | 2 | ||||
-rw-r--r-- | osi/src/thread.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/osi/src/allocation_tracker.c b/osi/src/allocation_tracker.c index c6a430301..baa820bb7 100644 --- a/osi/src/allocation_tracker.c +++ b/osi/src/allocation_tracker.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "bt_allocation_tracker" +#define LOG_TAG "bt_osi_allocation_tracker" #include <assert.h> #include <pthread.h> diff --git a/osi/src/array.c b/osi/src/array.c index 33fa38cce..fb11887fd 100644 --- a/osi/src/array.c +++ b/osi/src/array.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "bt_array" +#define LOG_TAG "bt_osi_array" #include <assert.h> diff --git a/osi/src/buffer.c b/osi/src/buffer.c index aee65623b..ebf51aa53 100644 --- a/osi/src/buffer.c +++ b/osi/src/buffer.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "bt_buffer" +#define LOG_TAG "bt_osi_buffer" #include <assert.h> #include <stdint.h> diff --git a/osi/src/eager_reader.c b/osi/src/eager_reader.c index 887fe1a38..f12175457 100644 --- a/osi/src/eager_reader.c +++ b/osi/src/eager_reader.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "osi_eager_reader" +#define LOG_TAG "bt_osi_eager_reader" #include <assert.h> #include <errno.h> diff --git a/osi/src/future.c b/osi/src/future.c index 230218fa2..be140ad1e 100644 --- a/osi/src/future.c +++ b/osi/src/future.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "osi_future" +#define LOG_TAG "bt_osi_future" #include <assert.h> diff --git a/osi/src/semaphore.c b/osi/src/semaphore.c index 4c45b2e5e..b8dddcf2b 100644 --- a/osi/src/semaphore.c +++ b/osi/src/semaphore.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "osi_semaphore" +#define LOG_TAG "bt_osi_semaphore" #include <assert.h> #include <errno.h> diff --git a/osi/src/thread.c b/osi/src/thread.c index d60968b01..1380755f7 100644 --- a/osi/src/thread.c +++ b/osi/src/thread.c @@ -16,7 +16,7 @@ * ******************************************************************************/ -#define LOG_TAG "osi_thread" +#define LOG_TAG "bt_osi_thread" #include <assert.h> #include <errno.h> |