zephyr/subsys/net/Kconfig.template.log_config.default.net
Ulf Magnusson bd6e04411e kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files:

    # <description>

    # <copyright>
    # <license>

    ...

Also change all <description>s from

    # Kconfig[.extension] - Foo-related options

to just

    # Foo-related options

It's clear enough that it's about Kconfig.

The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)

    git ls-files '*Kconfig*' | \
        xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-11-04 17:31:27 -05:00

51 lines
1.2 KiB
Plaintext

# Kconfig template file for setting networking log level for
# various network related components. This template variant
# allows user to specify the default log level.
# Copyright (c) 2018 Intel Corporation.
# SPDX-License-Identifier: Apache-2.0
choice
prompt "$(module-str)"
default $(module)_$(module-def)
depends on $(module-dep)
# If we ever get help text macro expansion, then just uncomment
# the following lines.
# help
# $(module-help)
config $(module)_LOG_LEVEL_OFF
bool "Off"
help
Do not write to log.
config $(module)_LOG_LEVEL_ERR
bool "Error"
help
Only write to log when NET_ERR or LOG_ERR is used.
config $(module)_LOG_LEVEL_WRN
bool "Warning"
help
Write to log with NET_WARN or LOG_WRN in addition to previous level.
config $(module)_LOG_LEVEL_INF
bool "Info"
help
Write to log with NET_INFO or LOG_INF in addition to previous levels.
config $(module)_LOG_LEVEL_DBG
bool "Debug"
help
Write to log with NET_DBG or LOG_DBG in addition to previous levels.
endchoice
config $(module)_LOG_LEVEL
int
default 0 if $(module)_LOG_LEVEL_OFF || !$(module-dep)
default 1 if $(module)_LOG_LEVEL_ERR
default 2 if $(module)_LOG_LEVEL_WRN
default 3 if $(module)_LOG_LEVEL_INF
default 4 if $(module)_LOG_LEVEL_DBG