Bluetooth: log: Remove redundant 'bt:' prefix from assert

BT_ERR() already inserts the bt: prefix.

Change-Id: I7feda0e28caad4f0e1f18e5d9099fa21684e4b35
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Johan Hedberg 2015-12-08 12:19:52 +02:00 committed by Anas Nashif
commit 401fccf7ce

View file

@ -41,7 +41,7 @@
BT_COLOR_YELLOW, ##__VA_ARGS__, BT_COLOR_OFF)
#define BT_INFO(fmt, ...) printf("bt: " fmt "\n", ##__VA_ARGS__)
#define BT_ASSERT(cond) if (!(cond)) { \
BT_ERR("bt: assert: '" #cond "' failed"); \
BT_ERR("assert: '" #cond "' failed"); \
}
#else
#define BT_DBG(fmt, ...)