Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Log::Dispatch::FileRotate ?

by nagalenoj (Friar)
on Nov 25, 2009 at 08:53 UTC ( [id://809294]=note: print w/replies, xml ) Need Help??


in reply to Log::Dispatch::FileRotate ?

Hello ree,

Append mode is working well. You please change the size parameter and test it again. It'll work fine.

-- size ($) The maximum (or close to) size the log file can grow too.

Replies are listed 'Best First'.
Re^2: Log::Dispatch::FileRotate ?
by vinoth.ree (Monsignor) on Nov 25, 2009 at 09:38 UTC

    Hi Nagalenoj,

    You are right, when I increase the file size to 1000 it appends the content in the file. I thought that 10 in size field for 10MB, I thing its takes 10KB as file size, but I am not sure. Thanks!

      The documentation is unclear, but if you look at the source, it is very clear that the size is in bytes. The size parameter defaults to 10MB, so try the default.

      Here is the relevant section of code from the Log::Dispatch::FileRotate module's constructor:

      # Size defaults to 10meg in all failure modes, hopefully my $ten_meg = 1024*1024*10; my $two_gig = 1024*1024*1024*2; my $size = $ten_meg; $size = $p{size} if defined $p{size}; $size = $ten_meg unless $size =~ /^\d+$/ && $size < $two_gig && $s +ize > 0; $self->{size} = $size;
Re^2: Log::Dispatch::FileRotate ?
by Anonymous Monk on Nov 25, 2009 at 09:08 UTC

    Did you tried the above code? with different size value?

    I changed the size to 5 and 1 no use same thing is happening for me.

      Sorry! The Last reply is mine. ree

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://809294]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (8)
As of 2024-04-19 13:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found