/usr/share/doc/ruby-log4r/examples/fileroll.rb is in ruby-log4r 1.1.10-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | # How to use RollingFileOutputter
$: << "../lib"
require 'log4r'
include Log4r
puts "this will take a while"
# example of log file being split by time constraint 'maxtime'
config = {
"filename" => "logs/TestTime.log",
"maxtime" => 10,
"trunc" => true
}
timeLog = Logger.new 'WbExplorer'
timeLog.outputters = RollingFileOutputter.new("WbExplorer", config)
timeLog.level = DEBUG
# log something once a second for 100 seconds
100.times { |t|
timeLog.info "blah #{t}"
sleep(1.0)
}
# example of log file being split by space constraint 'maxsize'
config = {
"filename" => "logs/TestSize.log",
"maxsize" => 16000,
"trunc" => true
}
sizeLog = Logger.new 'WbExplorer'
sizeLog.outputters = RollingFileOutputter.new("WbExplorer", config)
sizeLog.level = DEBUG
# log a large number of times
100000.times { |t|
sizeLog.info "blah #{t}"
}
puts "done! check the two sets of log files in logs/ (TestTime and TestSize)"
|