Lines Matching refs:log

42 Logging can come from a wide variety of places within U-Boot. Each log message
62 CONFIG_MAX_LOG_LEVEL - Max log level to build (anything higher is compiled
64 CONFIG_LOG_CONSOLE - Enable writing log records to the console
100 Filters are attached to log drivers to control what those drivers emit. Only
105 - maximum log level
118 log(category, level, format_string, ...)
120 Also debug() and error() will generate log records - these use LOG_CATEGORY
158 all of these can use LOG_CATEGORY as the category, and a log level
168 Convert debug() statements in the code to log() statements
170 Support making printf() emit log statements a L_INFO level
172 Convert error() statements in the code to log() statements
178 Add a way to browse log records
180 Add a way to record log records for browsing using an external tool
184 Add commands to add and remove log devices
186 Allow sharing of printf format strings in log records to reduce storage size
187 for large numbers of log records
195 Consider making log() calls emit an automatic newline, perhaps with a logn()
198 Passing log records through to linux (e.g. via device tree /chosen)
200 Provide a command to access the number of log records generated, and the
201 number dropped due to them being generated before the log system was ready.
203 Add a printf() format string pragma so that log statements are checked properly
205 Enhance the log console driver to show level / category / file / line
208 Add a command to add new log records and delete existing records.
210 Provide additional log() functions - e.g. logc() to specify the category