Lines Matching refs:category
39 Logging category
43 has a category which is intended to allow messages to be filtered according to
48 LOGC_NONE - Unknown category (e.g. a debug() statement)
79 with a level of LOGL_DEBUG and a category of LOGC_NONE.
118 log(category, level, format_string, ...)
121 as the category, so you should #define this right at the top of the source
122 file to ensure the category is correct.
146 Convenience functions to support setting the category:
148 log_arch(level, format_string, ...) - category LOGC_ARCH
149 log_board(level, format_string, ...) - category LOGC_BOARD
150 log_core(level, format_string, ...) - category LOGC_CORE
151 log_dt(level, format_string, ...) - category LOGC_DT
153 Convenience functions to support a category defined for a single file, for
158 all of these can use LOG_CATEGORY as the category, and a log level
193 Convert uclasses to use logging with the correct category
205 Enhance the log console driver to show level / category / file / line
210 Provide additional log() functions - e.g. logc() to specify the category