Logger - daliy bckup option available?

Hello ,

I would like to know is there any option to backup the log file hourly ?

In the Logger class i found only the following options
logger = Logger.new(‘foo.log’, ‘daily’)
logger = Logger.new(‘foo.log’, ‘weekly’)
logger = Logger.new(‘foo.log’, ‘monthly’)

Is there any way to do backup - ‘hourly’ ?

Thanks in advance

On Dec 15, 2008, at 3:57 AM, Muruga R. wrote:

Is there any way to do backup - ‘hourly’ ?

You’ll need to use one of the rolling log files from the two ruby
logging gems – Logging or Log4r. Both support defining your own
rolling log file interval, and both are based on the same design as
Java’s Log4j.

Log4r is no longer being maintained, but it has better documentation.
However, you can always e-mail the author of the Logging gem and he’ll
answer questions pretty quickly.

sudo gem install log4r
sudo gem install logging

Blessings,
TwP

Tim P. wrote:

On Dec 15, 2008, at 3:57 AM, Muruga R. wrote:

Is there any way to do backup - ‘hourly’ ?

You’ll need to use one of the rolling log files from the two ruby
logging gems – Logging or Log4r. Both support defining your own
rolling log file interval, and both are based on the same design as
Java’s Log4j.

Log4r is no longer being maintained, but it has better documentation.
However, you can always e-mail the author of the Logging gem and he’ll
answer questions pretty quickly.

sudo gem install log4r
sudo gem install logging

Blessings,
TwP

Thank You so much for your help Tim
I installed logging gem and was able to do rolling hourly