Home
last modified time | relevance | path

Searched full:logging (Results 1 – 25 of 2888) sorted by relevance

12345678910>>...116

/Zephyr-latest/modules/hal_nordic/nrfx/
DKconfig.logging4 menu "nrfx drivers logging"
8 bool "ADC driver logging"
12 bool "CLOCK driver logging"
16 bool "COMP driver logging"
20 bool "DPPI driver logging"
24 bool "EGU driver logging"
28 bool "GPIOTE driver logging"
32 bool "GRTC driver logging"
36 bool "I2S driver logging"
40 bool "IPC driver logging"
[all …]
/Zephyr-latest/subsys/bluetooth/
DKconfig.logging1 # Bluetooth logging configuration options
13 menu "Bluetooth logging"
19 source "subsys/logging/Kconfig.template.log_config"
34 source "subsys/logging/Kconfig.template.log_config_inherit"
38 source "subsys/logging/Kconfig.template.log_config_inherit"
46 source "subsys/logging/Kconfig.template.log_config_inherit"
52 source "subsys/logging/Kconfig.template.log_config_inherit"
61 source "subsys/logging/Kconfig.template.log_config_inherit"
65 source "subsys/logging/Kconfig.template.log_config_inherit"
69 source "subsys/logging/Kconfig.template.log_config_inherit"
[all …]
/Zephyr-latest/tests/subsys/logging/log_api/
Dtestcase.yaml7 - logging
15 logging.deferred.api.overflow_rt_filter:
21 logging.deferred.api.overflow:
26 logging.deferred.api.no_overflow:
31 logging.deferred.api.static_filter:
37 logging.deferred.api.printk:
45 logging.deferred.api.func_prefix:
51 logging.deferred.api.64b_timestamp:
56 logging.deferred.api.override_level:
67 logging.immediate.api:
[all …]
/Zephyr-latest/tests/subsys/logging/log_output/
Dtestcase.yaml6 logging.output:
9 - logging
12 logging.output.ts64:
15 - logging
18 logging.output.ts64.date:
21 - logging
26 logging.output.ts64.date.fulllibc:
29 - logging
36 logging.output.ts64.iso8601:
39 - logging
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dlog_helper.py5 Common code used when logging that is needed by multiple modules.
8 import logging
16 '''Platform-independent helper for logging subprocess invocations.
21 :param logger: logging.Logger to use
25 logger = logging.getLogger("twister")
26 logger.setLevel(logging.DEBUG)
35 logger = logging.getLogger("twister")
36 logger.setLevel(logging.DEBUG)
40 file_handler = logging.FileHandler(log_file)
42 file_handler = logging.FileHandler(os.path.join(outdir, "twister.log"))
[all …]
/Zephyr-latest/tests/subsys/logging/log_stack/
Dtestcase.yaml6 - logging
11 logging.stack.deferred:
14 logging.stack.deferred_no_opt:
21 logging.stack.immediate:
24 logging.stack.immediate_no_opt:
31 logging.stack.deferred_cpp:
35 logging.stack.deferred_cpp_no_opt:
42 logging.stack.immediate_cpp:
46 logging.stack.immediate_cpp_no_opt:
/Zephyr-latest/samples/subsys/logging/logger/
Dsample.yaml2 description: A simple application that demonstrate use of logging feature.
8 tags: logging
13 - Instance level logging showcase
15 - Disabling logging
17 - Logging performance showcase
18 - Logs from external logging system showcase
23 tags: logging
38 - logging
62 - logging
DREADME.rst1 .. zephyr:code-sample:: logging
2 :name: Logging
5 Output log messages to the console using the logging subsystem.
9 A simple application that demonstrates use of logging subsystem. It demonstrates
11 instance level filtering. It also showcases logging capabilities in terms of
21 :zephyr-app: samples/subsys/logging/logger
33 Module logging showcase.
36 Disabling logging in the sample_module module
37 Function called again but with logging disabled.
38 Instance level logging showcase.
[all …]
/Zephyr-latest/tests/subsys/logging/log_core_additional/
Dtestcase.yaml2 logging.async:
3 tags: logging
7 logging.sync:
8 tags: logging
12 logging.thread:
13 tags: logging
/Zephyr-latest/tests/subsys/logging/log_output_net/
Dtestcase.yaml7 logging.output.net:
10 - logging
13 logging.output.net.ts64:
16 - logging
19 logging.output.net.fulllibc:
22 - logging
/Zephyr-latest/tests/subsys/logging/log_msg/
Dtestcase.yaml7 - logging
12 logging.message:
16 logging.message.no_overflow:
20 logging.message.64b_timestamp:
25 logging.message.fp:
30 logging.message.fp_64b_timestamp:
/Zephyr-latest/tests/subsys/logging/dictionary/
Dtestcase.yaml2 # For twister runs, only logging backends with in hexidecimal format
3 # are supported. Currently, only UART logging backend does that.
16 logging.dictionary:
17 tags: logging
22 logging.dictionary.fpu:
23 tags: logging
/Zephyr-latest/scripts/coredump/
Dcoredump_gdbserver.py8 import logging
61 # Setup logging
62 logging.basicConfig(format=LOGGING_FORMAT)
64 # Setup logging for "parser"
65 logger = logging.getLogger("parser")
67 logger.setLevel(logging.DEBUG)
69 logger.setLevel(logging.INFO)
71 logger.setLevel(logging.WARNING)
73 # Setup logging for follow code
74 logger = logging.getLogger("gdbserver")
[all …]
/Zephyr-latest/tests/subsys/logging/log_blocking/
Dtestcase.yaml5 - logging
9 logging.blocking.rate.input_limited:
13 logging.blocking.rate.matched:
17 logging.blocking.rate.output_limited:
21 logging.blocking.rate.stalled:
/Zephyr-latest/tests/subsys/logging/log_stress/
Dtestcase.yaml5 - logging
9 logging.stress.light:
13 logging.stress.light_no_overflow:
17 logging.log_stress:
26 logging.stress.no_overflow:
/Zephyr-latest/tests/posix/xsi_system_logging/
Dtestcase.yaml4 - xsi.system.logging
14 portability.xsi.system.logging: {}
15 portability.xsi.system.logging.minimal:
18 portability.xsi.system.logging.newlib:
22 portability.xsi.system.logging.picolibc:
/Zephyr-latest/tests/subsys/logging/log_timestamp/
Dtestcase.yaml6 logging.output.default_timestamp:
9 - logging
11 logging.output.custom_timestamp:
14 - logging
/Zephyr-latest/scripts/dts/
Dedtlib_logger.py7 import logging
11 class LogFormatter(logging.Formatter):
24 # The edtlib module emits logs using the standard 'logging' module.
28 handler = logging.StreamHandler(sys.stderr)
31 logger = logging.getLogger('edtlib')
32 logger.setLevel(logging.WARNING)
/Zephyr-latest/samples/subsys/logging/dictionary/
Dsample.yaml2 description: Dictionary-based Logging Sample Application
7 tags: logging
13 tags: logging
22 tags: logging
32 tags: logging
46 tags: logging
62 tags: logging
/Zephyr-latest/doc/services/logging/
Dindex.rst3 Logging chapter
10 The logging API provides a common interface to process messages issued by
15 Summary of the logging features:
17 - Deferred logging reduces the time needed to log a message by shifting time
28 - Panic support - in panic mode logging switches to blocking, synchronous
30 - Printk support - printk message can be redirected to the logging.
32 - Support for logging floating point variables and long long arguments.
34 - Support for multi-domain logging.
36 Logging API is highly configurable at compile time as well as at run time. Using
46 and debug. For each severity level the logging API (:zephyr_file:`include/zephyr/logging/log.h`)
[all …]
Dcs_stm.rst3 Multi-domain logging using ARM Coresight STM
46 STMESP Logging frontend
49 … assumes that all required operations are executed in the context of the logging macro call. It is…
53 Early logging
56 STMESP cannot be used before STM or ETR/TPIU is setup. In order to support early logging,
59 content is written to STMESP. Early logging is applicable only to the core which owns and configures
65 There may be cases when logging is too slow (even though it is very fast). For cases like that a de…
75 Logging using STM
78 STM logging has 2 modes of operations:
80 * Dictionary-based - assisted mode which is using dictionary-based logging. In this mode logging
[all …]
/Zephyr-latest/tests/subsys/logging/log_immediate/
Dtestcase.yaml6 logging.immediate:
9 - logging
16 logging.immediate.clean_output:
20 - logging
/Zephyr-latest/scripts/logging/dictionary/
Dlog_parser_uart.py8 Log Parser for Dictionary-based Logging
16 import logging
24 logger = logging.getLogger("parser")
30 argparser.add_argument("dbfile", help="Dictionary Logging Database file")
46 logging.basicConfig(format=LOGGER_FORMAT)
49 logger.setLevel(logging.DEBUG)
51 logger.setLevel(logging.INFO)
/Zephyr-latest/tests/subsys/logging/log_benchmark/
Dtestcase.yaml4 tags: logging
6 logging.benchmark:
10 logging.benchmark_speed:
15 logging.benchmark_user:
/Zephyr-latest/subsys/logging/backends/
DKconfig.uart24 In deferred logging mode, sets the maximum number of bytes which can be buffered in
28 In immediate logging mode, processed log messages are not buffered and are always
35 When enabled automatically start the UART logging backend on
41 source "subsys/logging/Kconfig.template.log_format_config"
52 Dictionary-based logging output in binary.
57 Dictionary-based logging output in hexadecimal. Supported only for UART backend.

12345678910>>...116