summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-07-20 23:23:25 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-07-20 23:23:25 +0000
commit82448ad7d23de260487a0b86ea08c70cc6b1eba4 (patch)
treea6b69cab8006e8443b27dc3cc022852499254c24 /configs
parentebf651105ec2ac565fb0b83d210b5370b62c0bcf (diff)
Separate queue_log arguments into separate fields, and allow the text file to be used, even when realtime is used.
(closes issue #17082) Reported by: coolmig Patches: 20100720__issue17082.diff.txt uploaded by tilghman (license 14) Tested by: coolmig git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@278307 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configs')
-rw-r--r--configs/logger.conf.sample13
1 files changed, 11 insertions, 2 deletions
diff --git a/configs/logger.conf.sample b/configs/logger.conf.sample
index 75e10e46a..0d90c80b7 100644
--- a/configs/logger.conf.sample
+++ b/configs/logger.conf.sample
@@ -26,18 +26,27 @@
; (defaults to yes).
;queue_log = no
;
+; Determines whether the queue_log always goes to a file, even
+; when a realtime backend is present (defaults to no).
+;queue_log_to_file = yes
+;
; Set the queue_log filename
; (defaults to queue_log)
;queue_log_name = queue_log
;
; Log rotation strategy:
; sequential: Rename archived logs in order, such that the newest
-; has the highest sequence number [default].
+; has the highest sequence number [default]. When
+; exec_after_rotate is set, ${filename} will specify
+; the new archived logfile.
; rotate: Rotate all the old files, such that the oldest has the
; highest sequence number [this is the expected behavior
-; for Unix administrators].
+; for Unix administrators]. When exec_after_rotate is
+; set, ${filename} will specify the original root filename.
; timestamp: Rename the logfiles using a timestamp instead of a
; sequence number when "logger rotate" is executed.
+; When exec_after_rotate is set, ${filename} will
+; specify the new archived logfile.
;rotatestrategy = rotate
;
; Run a system command after rotating the files. This is mainly