diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-05-26 16:00:14 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-05-26 16:00:14 +0200 |
commit | 5605b1b60ae6bd8939c083cc043c4d7ec01cef8c (patch) | |
tree | ff7499b623a1b1f71ace2c9606287cbb1d961c69 | |
parent | 054c6b595d94601bda974eb85a3e1c833de9616b (diff) | |
download | rsyslog-5605b1b60ae6bd8939c083cc043c4d7ec01cef8c.tar.gz rsyslog-5605b1b60ae6bd8939c083cc043c4d7ec01cef8c.tar.bz2 rsyslog-5605b1b60ae6bd8939c083cc043c4d7ec01cef8c.zip |
doc bugfix: ReadMode wrong in imfile doc, two values were swapped
closes: http://bugzilla.adiscon.com/show_bug.cgi?id=450
Thanks to jokajak@gmail.com for mentioning this
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | doc/imfile.html | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -5,6 +5,9 @@ Version 7.3.16 [beta] 2013-05-?? that case, cached versions of the man pages are used (they were built during "make dist", so they should be current for the version in question. +- doc bugfix: ReadMode wrong in imfile doc, two values were swapped + Thanks to jokajak@gmail.com for mentioning this + closes: http://bugzilla.adiscon.com/show_bug.cgi?id=450 - imjournal: no longer do periodic wakeup - bugfix: potential hang *in debug mode* on rsyslogd termination This ONLY affected rsyslogd if it were running with debug output diff --git a/doc/imfile.html b/doc/imfile.html index f37f7055..274d6e60 100644 --- a/doc/imfile.html +++ b/doc/imfile.html @@ -104,8 +104,8 @@ file is very time consuming. <li><b>ReadMode</b> [mode]</b><br> This mode should defined when having multiline messages. The value can range from 0-2 and determines the multiline detection method. <br>0 (default) - line based (Each line is a new message) -<br>1 - indented (New log messages start at the beginning of a line. If a line starts with a space it is part of the log message before it) -<br>2 - paragraph (There is a blank line between log messages) +<br>1 - paragraph (There is a blank line between log messages) +<br>2 - indented (New log messages start at the beginning of a line. If a line starts with a space it is part of the log message before it) <li><b>MaxLinesAtOnce</b> [number]</b> <br> This is useful if multiple files need to be monitored. If set to 0, each file |