diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-02-06 16:58:05 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-02-06 16:58:05 +0000 |
commit | a869574c564440c79a40b0d2019ad0a6c8b24174 (patch) | |
tree | 01d744a063b377e049f87c17ad4c567905db9bdd /src/common/log.c | |
parent | f76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648 (diff) | |
download | tor-a869574c564440c79a40b0d2019ad0a6c8b24174.tar.gz tor-a869574c564440c79a40b0d2019ad0a6c8b24174.zip |
r17947@catbus: nickm | 2008-02-06 11:57:53 -0500
Fix a bunch of DOCDOC items; document the --quiet flag; refactor a couple of XXXX020 items.
svn:r13405
Diffstat (limited to 'src/common/log.c')
-rw-r--r-- | src/common/log.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/log.c b/src/common/log.c index 72dff4ae59..178c10a082 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -457,8 +457,9 @@ close_log(logfile_t *victim) } } -/** Add a log handler to send all messages of severity <b>loglevel</b> - * or higher to <b>stream</b>. DOCDOC.*/ +/** Add a log handler named <b>name</b> to send all messages of severity + * between <b>loglevelMin</b> and <b>loglevelMax</b> (inclusive) to + * <b>stream</b>. */ static void add_stream_log_impl(int loglevelMin, int loglevelMax, const char *name, FILE *stream) |