summaryrefslogtreecommitdiff
path: root/nuttx/drivers/syslog/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-02 17:09:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-02 17:09:25 +0000
commit91bc37410bc27d9d3c1c880e783f26f748f2e434 (patch)
tree3bba899b7f99e4632d1922bbe89c210b10f7cb7a /nuttx/drivers/syslog/README.txt
parenta484bea877cdbc2256caadfa910ffdbc8b754e34 (diff)
downloadnuttx-91bc37410bc27d9d3c1c880e783f26f748f2e434.tar.gz
nuttx-91bc37410bc27d9d3c1c880e783f26f748f2e434.tar.bz2
nuttx-91bc37410bc27d9d3c1c880e783f26f748f2e434.zip
The initial SYLOG device logic was valiant but yet still not enough
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4998 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/syslog/README.txt')
-rw-r--r--nuttx/drivers/syslog/README.txt12
1 files changed, 11 insertions, 1 deletions
diff --git a/nuttx/drivers/syslog/README.txt b/nuttx/drivers/syslog/README.txt
index c034b49b6..611f43567 100644
--- a/nuttx/drivers/syslog/README.txt
+++ b/nuttx/drivers/syslog/README.txt
@@ -7,7 +7,17 @@ debug output and, therefore, the syslogging interfaces are defined in the
header file include/debug.h.
By default, all system log output goes to console (/dev/console). But that
-behavior can be changed by the drivers in this directory.
+behavior can be changed by the defining CONFIG_SYSLOG in the NuttX
+configuration. In that, case all low-level debug output will go through
+syslog_putc().
+
+One version of syslog_putc() is defined in fs/fs_syslog.c; that version is
+used when CONFIG_SYSLOG_CHAR is defined. That version of syslog_putc()
+just integrates with the file system to re-direct debug output to a
+character device or to a file.
+
+If CONFIG_SYSLOG_CHAR is not defined, then other custom SYSLOG drivers
+can be used. Those custom SYSLOG drivers reside in this directory.
ramlog.c
--------