Searched full:logging (Results 1 – 25 of 2888) sorted by relevance
12345678910>>...116
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"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 …]
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:67 logging.immediate.api:[all …]
6 logging.output:9 - logging12 logging.output.ts64:15 - logging18 logging.output.ts64.date:21 - logging26 logging.output.ts64.date.fulllibc:29 - logging36 logging.output.ts64.iso8601:39 - logging[all …]
5 Common code used when logging that is needed by multiple modules.8 import logging16 '''Platform-independent helper for logging subprocess invocations.21 :param logger: logging.Logger to use25 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 …]
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
7 logging.output.net:10 - logging13 logging.output.net.ts64:16 - logging19 logging.output.net.fulllibc:22 - 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.16 logging.dictionary:17 tags: logging22 logging.dictionary.fpu:23 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:
4 - xsi.system.logging14 portability.xsi.system.logging: {}15 portability.xsi.system.logging.minimal:18 portability.xsi.system.logging.newlib:22 portability.xsi.system.logging.picolibc:
6 logging.output.default_timestamp:9 - logging11 logging.output.custom_timestamp:14 - logging
7 import logging11 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)
2 description: Dictionary-based Logging Sample Application7 tags: logging13 tags: logging22 tags: logging32 tags: logging46 tags: logging62 tags: 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 …]
3 Multi-domain logging using ARM Coresight STM46 STMESP Logging frontend49 … assumes that all required operations are executed in the context of the logging macro call. It is…53 Early logging56 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 configures65 There may be cases when logging is too slow (even though it is very fast). For cases like that a de…75 Logging using STM78 STM logging has 2 modes of operations:80 * Dictionary-based - assisted mode which is using dictionary-based logging. In this mode logging[all …]
6 logging.immediate:9 - logging16 logging.immediate.clean_output:20 - logging
8 Log Parser for Dictionary-based Logging16 import logging24 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)
4 tags: logging6 logging.benchmark:10 logging.benchmark_speed:15 logging.benchmark_user:
24 In deferred logging mode, sets the maximum number of bytes which can be buffered in28 In immediate logging mode, processed log messages are not buffered and are always35 When enabled automatically start the UART logging backend on41 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.