diff options
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) |