Lines Matching full:log

21  * @brief Log level
25 ESP_LOG_NONE, /*!< No log output */
36 * @brief Default log level
45 * @brief Set log level for given tag
49 * @note Note that this function can not raise log level above the level set using
51 * To raise log level above the default one for a given file, define
55 * @param tag Tag of the log entries to enable. Must be a non-NULL zero terminated string.
56 * Value "*" resets log level for all tags to the given value.
58 * @param level Selects log level to enable. Only logs at this and lower verbosity
64 * @brief Get log level for a given tag, can be used to avoid expensive log statements
66 * @param tag Tag of the log to query current level. Must be a non-NULL zero terminated
69 * @return The current log level for the given tag
74 * @brief Set function used to output log entries
76 * By default, log output goes to UART0. This function can be used to redirect log
78 * log handler, which may be necessary to return output to the previous destination.
90 * @brief Function which returns timestamp to be used in log output
104 * @brief Function which returns system timestamp to be used in log output
119 * @brief Function which returns timestamp to be used in log output
129 * @brief Write message into the log
139 * @brief Write message into the log, va_list variant
143 * so that esp_log can be used as a log sink.
162 * @brief Log a buffer of hex bytes at specified level, separated into 16 bytes each line.
167 * @param level level of the log
178 …* @brief Log a buffer of characters at specified level, separated into 16 bytes each line. Buffer …
183 * @param level level of the log
194 * @brief Dump a buffer to the log at specified level.
196 * The dump log shows just like the one below:
207 * @param level level of the log
217 * @brief Log a buffer of hex bytes at Info level
234 * @brief Log a buffer of characters at Info level. Buffer should contain only printable characters.
288 /// Log at ``ESP_LOG_ERROR`` level. @see ``printf``,``ESP_LOGE``,``ESP_DRAM_LOGE``
322 /* For early log, there is no log tag filtering. So we want to log only if both the LOG_LOCAL_LEVEL…
323 currently configured min log level are higher than the log level */
353 …* @param tag tag of the log, which can be used to change the log level by ``esp_log_level_set`` at…
382 …* @param tag tag of the log, which can be used to change the log level by ``esp_log_level_set`` at…
383 * @param level level of the output log.
384 * @param format format of the output log. See ``printf``
385 * @param ... variables to be replaced into the log. See ``printf``
437 * @brief Macro to output logs when the cache is disabled. Log at ``ESP_LOG_ERROR`` level.
442 * Similar to @see ``ESP_EARLY_LOGE``, the log level cannot be changed per-tag, however
443 * esp_log_level_set("*", level) will set the default level which controls these log lines also.
448 * @note Placing log strings in DRAM reduces available DRAM, so only use when absolutely essential.