Searched full:logging (Results 1 – 25 of 2968) sorted by relevance
12345678910>>...119
4 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 …]
1 # Bluetooth logging configuration options13 menu "Bluetooth logging"19 source "subsys/logging/Kconfig.template.log_config"33 source "subsys/logging/Kconfig.template.log_config_inherit"37 source "subsys/logging/Kconfig.template.log_config_inherit"45 source "subsys/logging/Kconfig.template.log_config_inherit"49 source "subsys/logging/Kconfig.template.log_config_inherit"55 source "subsys/logging/Kconfig.template.log_config_inherit"59 source "subsys/logging/Kconfig.template.log_config_inherit"63 source "subsys/logging/Kconfig.template.log_config_inherit"[all …]
7 - logging15 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:68 logging.immediate.api:[all …]
6 - logging11 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:
2 description: A simple application that demonstrate use of logging feature.8 tags: logging13 - Instance level logging showcase15 - Disabling logging17 - Logging performance showcase18 - Logs from external logging system showcase23 tags: logging38 - logging62 - logging
1 .. zephyr:code-sample:: logging2 :name: Logging5 Output log messages to the console using the logging subsystem.9 A simple application that demonstrates use of logging subsystem. It demonstrates11 instance level filtering. It also showcases logging capabilities in terms of21 :zephyr-app: samples/subsys/logging/logger33 Module logging showcase.36 Disabling logging in the sample_module module37 Function called again but with logging disabled.38 Instance level logging showcase.[all …]
2 logging.async:3 tags: logging7 logging.sync:8 tags: logging12 logging.thread:13 tags: logging
6 logging.output:9 - logging12 logging.output.ts64:15 - logging18 logging.output.thread_id:21 - logging
7 - logging12 logging.message:16 logging.message.no_overflow:20 logging.message.64b_timestamp:25 logging.message.fp:30 logging.message.fp_64b_timestamp:
2 # For twister runs, only logging backends with in hexidecimal format3 # are supported. Currently, only UART logging backend does that.7 logging.dictionary:8 tags: logging16 logging.dictionary.fpu:17 tags: logging
8 import logging61 # Setup logging62 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 code74 logger = logging.getLogger("gdbserver")[all …]
5 - logging9 logging.blocking.rate.input_limited:13 logging.blocking.rate.matched:17 logging.blocking.rate.output_limited:21 logging.blocking.rate.stalled:
5 - logging9 logging.stress.light:13 logging.stress.light_no_overflow:17 logging.log_stress:26 logging.stress.no_overflow:
2 description: Dictionary-based Logging Sample Application7 tags: logging13 tags: logging22 tags: logging32 tags: logging46 tags: logging62 tags: logging
6 logging.output.default_timestamp:9 - logging11 logging.output.custom_timestamp:14 - logging
3 Logging chapter10 The logging API provides a common interface to process messages issued by15 Summary of the logging features:17 - Deferred logging reduces the time needed to log a message by shifting time28 - Panic support - in panic mode logging switches to blocking, synchronous30 - 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. Using46 and debug. For each severity level the logging API (:zephyr_file:`include/zephyr/logging/log.h`)[all …]
6 logging.immediate:9 - logging16 logging.immediate.clean_output:20 - logging
25 In deferred logging mode, sets the maximum number of bytes which can be buffered in29 In immediate logging mode, processed log messages are not buffered and are always36 When enabled automatically start the UART logging backend on42 source "subsys/logging/Kconfig.template.log_format_config"53 Dictionary-based logging output in binary.58 Dictionary-based logging output in hexadecimal. Supported only for UART backend.
4 tags: logging6 logging.benchmark:10 logging.benchmark_speed:15 logging.benchmark_user:
14 #include <zephyr/logging/log_ctrl.h>17 #include <zephyr/logging/log.h>56 * Sample module API is called then logging for this module is disabled and62 printk("Module logging showcase.\n"); in module_logging_showcase()68 printk("Disabling logging in the %s module\n", in module_logging_showcase()77 printk("Function called again but with logging disabled.\n"); in module_logging_showcase()88 * Sample multi-instance module API on two instances is called then logging94 printk("Instance level logging showcase.\n"); in instance_logging_showcase()113 printk("Disabling logging on both instances.\n"); in instance_logging_showcase()128 printk("Function call on both instances with logging disabled.\n"); in instance_logging_showcase()[all …]
1 .. zephyr:code-sample:: logging-ble-backend2 :name: BLE logging backend5 Send log messages over BLE using the BLE logging backend.10 Sample that demonstrates how to setup and use the BLE Logging backend. The26 This sample can be found under :zephyr_file:`samples/subsys/logging/ble_backend` in the
4 logging.mipi_syst:7 - logging28 logging.mipi_syst.text:31 - logging
8 import logging17 logger = logging.getLogger(__name__)18 logging.getLogger('pykwalify').setLevel(logging.ERROR)
17 #include <zephyr/logging/log_backend.h>18 #include <zephyr/logging/log_backend_std.h>19 #include <zephyr/logging/log_ctrl.h>20 #include <zephyr/logging/log.h>21 #include <zephyr/logging/log_output.h>133 /* The logging system support user customize timestamping in log messages185 * @details Logging system identify domain/processor by domain_id which is now188 * @addtogroup logging194 * @brief Create Tests for Dynamic Loadable Logging Backends199 * @addtogroup logging[all …]
7 import logging20 def log_command(logger: logging.Logger, msg: str, args: list, level: int = logging.DEBUG) -> None:22 Platform-independent helper for logging subprocess invocations.28 :param logger: logging.Logger to use