BLE logging not showing inf and dbg

Hi,

i am working on the nrf5280, and I have set up BLE with NUS so I have a shell and logging over BLE, as well as logging over UART.

I have a python script running that connects and is able to send shell commands and that works great.  

However, it will only show logs that are WRN or ERR, and doesn't show DBG or INF, but the uart does.

I've tried setting several different kconfig options with no luck


```

bt_nus:~$ logtest all
All log levels printed
[00:00:22.112,884] <wrn> log_test: Test warning message (all levels test)
[00:00:22.112,884] <err> log_test: Test error message (all levels test)`

```

```

[00:00:22.112,854] <dbg> log_test: prv_cmd_log_all: Test debug message (all levels test)
[00:00:22.112,884] <inf> log_test: Test info message (all levels test)
[00:00:22.112,884] <wrn> log_test: Test warning message (all levels test)
[00:00:22.112,884] <err> log_test: Test error message (all levels test)

```

CONFIG_LOG_MAX_LEVEL=4
CONFIG_LOG_DEFAULT_LEVEL=3
Related