Home
last modified time | relevance | path

Searched refs:severity (Results 1 – 16 of 16) sorted by relevance

/Zephyr-latest/subsys/shell/modules/kernel_service/
Dlog-level.c18 uint8_t severity = shell_strtoul(argv[2], 10, &err); in cmd_kernel_log_level_set() local
26 if (severity > LOG_LEVEL_DBG) { in cmd_kernel_log_level_set()
27 shell_error(sh, "Invalid log level: %d", severity); in cmd_kernel_log_level_set()
39 log_filter_set(NULL, 0, (int16_t)source_id, severity); in cmd_kernel_log_level_set()
/Zephyr-latest/scripts/utils/
Dconvert_guidelines.py24 def severity_print(self, outputfile, guideline_number, severity): argument
39 def severity_print(self, outputfile, guideline_number, severity): argument
40 print('Rule ' + guideline_number + ' ' + severity, file=outputfile)
/Zephyr-latest/subsys/logging/
Dlog_output_syst.c553 uint32_t severity) argument
595 MIPI_SYST_PRINTF(&log_syst_handle, severity, "%s", hexdump_buf);
599 uint32_t severity) argument
604 hexdump_line_print(data, part_len, severity);
615 uint32_t severity = level_to_syst_severity(log_msg_get_level(msg)); local
617 MIPI_SYST_VPRINTF(&log_syst_handle, severity, fmt, ap);
651 uint32_t severity = level_to_syst_severity(log_msg_get_level(msg)); local
766 MIPI_SYST_CATMSG_ARGS_COPY(&log_syst_handle, severity,
869 uint32_t severity = level_to_syst_severity(log_msg_get_level(msg)); local
871 hexdump2_print(data, hexdump_len, severity);
DKconfig.filtering10 Allow runtime configuration of maximal, independent severity
Dlog_output.c34 static const char *const severity[] = { variable
309 total += print_formatted(output, "<%s> ", severity[level]); in ids_print()
/Zephyr-latest/samples/drivers/charger/src/
Dmain.c38 val.discharge_current_notification.severity = CHARGER_SEVERITY_WARNING; in main()
/Zephyr-latest/scripts/ci/
Dcheck_compliance.py86 self, severity, title, file, line=None, col=None, desc="", end_line=None, end_col=None argument
88 self.severity = severity
105 typ = severity.lower()
181 self, severity, title, file, line=None, col=None, desc="", end_line=None, end_col=None argument
188 fail = FmtdFailure(severity, title, file, line, col, desc, end_line, end_col)
1286 severity = 'unknown'
1288 severity = 'error'
1290 severity = 'warning'
1291 self.fmtd_failure(severity, m['messageId'], m['path'],
/Zephyr-latest/include/zephyr/drivers/
Dcharger.h238 uint8_t severity; member
/Zephyr-latest/samples/subsys/logging/logger/
DREADME.rst10 main features: severity levels, timestamping, module level filtering and
/Zephyr-latest/doc/services/logging/
Dindex.rst39 During compilation logs can be filtered out on module basis and severity level.
45 There are four severity levels available in the system: error, warning, info
46 and debug. For each severity level the logging API (:zephyr_file:`include/zephyr/logging/log.h`)
69 to globally limit logs by providing maximal severity level present in the
70 system, where maximal means lowest severity (e.g. if maximal level in the system
85 severity level. Standard message contains pointer to the string and arguments.
116 :kconfig:option:`CONFIG_LOG_MAX_LEVEL`: Maximal (lowest severity) level which is
/Zephyr-latest/doc/security/
Dreporting.rst165 - The severity of the issue.
/Zephyr-latest/doc/project/
Drelease_process.rst133 Bugs of moderate severity and higher that have impact on all users are typically
142 - Evaluate bugs as potential blockers based on their severity and prevalence.
Ddev_env_and_tools.rst75 on the fix, severity, and availability of someone to review them (other than the
/Zephyr-latest/doc/contribute/coding_guidelines/
Dindex.rst48 severity and the equivalent rules from other standards for reference.
67 - MISRA-C severity
/Zephyr-latest/doc/releases/
Drelease-notes-2.1.rst382 * Reduced severity of unavoidable warnings
Drelease-notes-3.4.rst421 * Downgraded the severity of select log messages to avoid log flooding.