summaryrefslogtreecommitdiff
path: root/samples/bluetooth
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2016-12-17 12:56:56 -0500
committerAnas Nashif <nashif@linux.intel.com>2016-12-19 19:58:39 +0000
commita9e879e27352600ddfca3081708574a5f547bd45 (patch)
tree88de55671978fc9c8e4eff0eb483f5e61affdde5 /samples/bluetooth
parentaffd58a50c849ae42c8ebe474752499a766f3c55 (diff)
logging: move sys_log to subsys/logging
Move logging out of misc/ to its own subsystem. Anything related to logging and any new logging features or backends could be added here instead of the generic location in misc/ which is overcrowded with options that are not related to eachother. Jira: ZEP-1467 Change-Id: If6a3ea625c3a3562a7a61a0ba5fd7e6ca75518ba Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Diffstat (limited to 'samples/bluetooth')
-rw-r--r--samples/bluetooth/hci_uart/src/main.c2
-rw-r--r--samples/bluetooth/hci_usb/src/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/samples/bluetooth/hci_uart/src/main.c b/samples/bluetooth/hci_uart/src/main.c
index 6db2da9f9..39d121a16 100644
--- a/samples/bluetooth/hci_uart/src/main.c
+++ b/samples/bluetooth/hci_uart/src/main.c
@@ -23,7 +23,7 @@
#include <zephyr.h>
#include <arch/cpu.h>
#include <misc/byteorder.h>
-#include <misc/sys_log.h>
+#include <logging/sys_log.h>
#include <misc/util.h>
#include <device.h>
diff --git a/samples/bluetooth/hci_usb/src/main.c b/samples/bluetooth/hci_usb/src/main.c
index b2b37c4bb..5970dc7a0 100644
--- a/samples/bluetooth/hci_usb/src/main.c
+++ b/samples/bluetooth/hci_usb/src/main.c
@@ -19,7 +19,7 @@
#include <device.h>
#include <uart.h>
-#include <misc/sys_log.h>
+#include <logging/sys_log.h>
#include <misc/util.h>
#include <net/buf.h>