CONFIG_LOG_BACKEND_NET_MAX_BUF

How many network buffers to allocate for sending messages

Type: int

Help

Each syslog message should fit into a network packet that will be sent to server. This number tells how many syslog messages can be in transit to the server.

Direct dependencies

LOG_BACKEND_NET && !LOG_MINIMAL && LOG

(Includes any dependencies from ifs and menus.)

Default

  • 3

Kconfig definition

At <Zephyr>/subsys/logging/Kconfig:491

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:34<Zephyr>/subsys/Kconfig:28

Menu path: (Top) → Sub Systems and OS Services → Logging → Enable networking backend

config LOG_BACKEND_NET_MAX_BUF
    int "How many network buffers to allocate for sending messages"
    range 3 256
    default 3
    depends on LOG_BACKEND_NET && !LOG_MINIMAL && LOG
    help
      Each syslog message should fit into a network packet that will be
      sent to server. This number tells how many syslog messages can be
      in transit to the server.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)