samples: cdc_acm_composite: rework sample logging
Match the logging changes made in samples/.../usb/cdc_acm to the cdc_acm_composite sample. This allows any device testing checks to work properly. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
9d1da7866c
commit
9958757c0f
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@
|
|||
#include <sys/ring_buffer.h>
|
||||
|
||||
#include <logging/log.h>
|
||||
LOG_MODULE_REGISTER(cdc_acm_composite, CONFIG_LOG_DEFAULT_LEVEL);
|
||||
LOG_MODULE_REGISTER(cdc_acm_composite, LOG_LEVEL_INF);
|
||||
|
||||
#define RING_BUF_SIZE (64 * 2)
|
||||
|
||||
|
@ -128,7 +128,7 @@ void main(void)
|
|||
return;
|
||||
}
|
||||
|
||||
LOG_DBG("Wait for DTR");
|
||||
LOG_INF("Wait for DTR");
|
||||
|
||||
while (1) {
|
||||
uart_line_ctrl_get(dev0, LINE_CTRL_DTR, &dtr);
|
||||
|
@ -148,7 +148,7 @@ void main(void)
|
|||
k_sleep(100);
|
||||
}
|
||||
|
||||
LOG_DBG("DTR set, start test");
|
||||
LOG_INF("DTR set, start test");
|
||||
|
||||
uart_line_set(dev0);
|
||||
uart_line_set(dev1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue