summaryrefslogtreecommitdiffstats
path: root/doc/develop
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-10-28 08:34:11 -0400
committerTom Rini <trini@konsulko.com>2020-10-28 08:34:11 -0400
commita45da8f51eeb22f3c44928b0beabee819469e309 (patch)
tree4f12560f10151c4fe5b7bb2a58e2b04bee035f45 /doc/develop
parent986c980c8250849d9394fdf377a3de75edb11888 (diff)
parent2a0cbf3bca372dcbc79048d475c817d4e462069e (diff)
Merge branch '2020-10-27-further-log-enhancements'
- Allow for log message continuation. - Test fix, build time error checking for new categories
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/logging.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/develop/logging.rst b/doc/develop/logging.rst
index 28340a4aac..528280c3e8 100644
--- a/doc/develop/logging.rst
+++ b/doc/develop/logging.rst
@@ -38,6 +38,9 @@ There are a number logging levels available, in increasing order of verbosity:
* LOGL_DEBUG_CONTENT - Debug message showing full message content
* LOGL_DEBUG_IO - Debug message showing hardware I/O access
+To continue a log message in a separate call of function log() use
+
+* LOGL_CONT - Use same log level as in previous call
Logging category
----------------
@@ -56,6 +59,9 @@ The following main categories are defined:
* LOGC_DT - Related to device tree control
* LOGC_EFI - Related to EFI implementation
+To continue a log message in a separate call of function log() use
+
+* LOGC_CONT - Use same category as in previous call
Enabling logging
----------------