This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Lost LOGs - increase LOG backend queue size.

Hello, how can I increase LOG backend queue size? I was comparing some sdk_config settings with some examples, but did not find difference and the example does not fire this message. I am not logging much more info than the example.

Thank you.

Parents Reply
  • I am initializing the NRF_CLI using this piece of code:

    NRF_CLI_CMD_REGISTER(set, NULL, "help string test", cli_cmd_set);
    NRF_CLI_UART_DEF(m_cli_uart_transport, 0, 64, 16);
    NRF_CLI_DEF(m_cli_uart, "sequoia: ", &m_cli_uart_transport.transport, '\r', 4);

    When I increase the "4" in the NRF_CLI_DEF to e.g. "5", the logs start to behave strangely, this is the output:

    So even the error log is not complete...

    If I increase the value to something greater, e.g. "12", I get this output:

    -> I do not see the red error but I can see only first char of the "cli_prefix".

Children
Related