Log::Log4perl lets you remote-control and fine-tune the logging behaviour of your system from the outside. It implements the widely popular (Java-based) Log4j logging package in pure Perl.

learn more… | top users | synonyms

0
votes
1answer
53 views

mysqldump output to log4perl

I have a Perl script that uses log4perl to log everything to file. The config for log4perl is stored in an external file. This script runs the mysqldump command using qx. The output of the mysqldump ...
0
votes
1answer
43 views

Catalyst: Log4perl and Apache

I host my Catalyst web application with Apache2 and ModPerl. The web application uses the Log4perl modul to generate logfiles. The problem is that only log entries are generated when the apache ...
1
vote
1answer
36 views

How to configure log4perl.conf and a perl script so as to set correct permissions to log files?

I am using Log::Log4Perl for logging for my perl scripts. Everything is working great, except one thing; I have some common modules used by different scripts (and run by different users). I want those ...
1
vote
2answers
138 views

directing all output of a perl script to file and screen

I have a perl script that uses log4perl to log all output to screen and file. Problem is, certain output does not get directed to log4perl. Script - use strict; use warnings 'FATAL' => 'all'; ...
1
vote
1answer
121 views

Perl logfile named as timestamp issue

I'm writing a Log4perl logger and am using the localtime() function. The problem is, every time I call the module that reinstantiates the log4perl logger (for a different file) the localtime() will ...
0
votes
1answer
410 views

How to install and Use log4perl

I am new to using log4p and want to use the same for logging in my code. I am getting errors like Can't locate Log/Log4perl.pm in @INC which I understand is becuase of missing library , now where ...
0
votes
1answer
58 views

Log4perl weird errors using file appender

I'm trying to add and remove a simple file appender to a Log4perl logger, but warnings are generated and nothing is printed. Here is my code: use strict; use warnings; use Log::Log4perl qw(:easy); ...
2
votes
1answer
87 views

Log4perl configuration is not working

I have Log4perl installed on my Linux machine and have the following /path/to/log4perl.conf: log4perl.logger.Fizz = INFO, FizzAppender log4perl.logger.Buzz = INFO, BuzzAppender ...
3
votes
1answer
182 views

How to get Log4perl rotating my logs daily?

I'm reading up on Log4perl and want to try and use it for simple log management of my Perl scripts running on a Linux box. I've also read up on newsyslog and logrotate but want to use Log4perl if at ...
2
votes
1answer
50 views

Log4perl category as log file name

I'm sure I'm being dim and missing the obvious but is there a simple way of using the current category as the filename in a config file without resorting to a subroutine call? So that in the ...
2
votes
1answer
137 views

Perl: Log4Perl call log4perl in case of unhandled error

Is there a way in log4Perl that I can force my programs to log fatal even outside an eval clause? I want to achieve to call log4perl also in case of any unhandled program termination. Prefereably I ...
1
vote
2answers
176 views

Log4Perl: How do I change the logger file used from running code? (After a fork)

I have an ETL process set up in perl to process a number of files, and load them to a database. Recently, for performance reasons I set up the code to be multi-threaded, through use of a fork() call ...
1
vote
1answer
273 views

Limiting log size with log4perl

I want to limit the size of log files created with log4perl. I don't want my log file to grow to more than about 100mb; I only need the last 100mb (or thereabouts) of data. Ideally, it would truncate ...
0
votes
2answers
231 views

How to configure DateFileAppender for log4perl

I know how to configure the log4j so that the logs file gets rotated automatically with the date appended to the log file.? log4j.appender.schedulerService.Directory = ${logdir} ...
0
votes
2answers
106 views

Log4perl: new message in the same line without prefix

Each Log4perl message starts with a new line: my $log = Log::Log4perl->get_logger("log"); $log->info("start:"); $log->info("10"); $log->info("20"); $log->info("30"); result: ...
0
votes
1answer
92 views

How can I replace a pattern before logging while using Log::Log4perl in Perl?

I am trying to replace a pattern in the log message before it gets logged on to the file. The logger uses the Perl Module Log::Log4perl. I see that there is only a Filter option available in this ...
0
votes
1answer
83 views

How can I change the timezone of Log4perl timestamps

My web server is in a timezone different from mine and I am using this pattern layout in the Log4perl config: log4perl.appender.LOGFILE.layout=PatternLayout ...
-1
votes
1answer
451 views

Perl Log4perl Printing and logging at the same time in a line

I'm reading this and I am confused and stuck. Should I use ALWAYS or print_portfolio('themessage') to both print and log into a file at the same time? What I want to do: if ($logfile) { open ...
0
votes
4answers
91 views

Parsing help in Perl

My (existing) perl files creates a Log file using Log4Perl in the following format [2011-11-21 08:50:22,406] States_Sync INFO Logger.pm:33 script starts [2011-11-21 08:50:22,610] States_Sync ERROR ...
0
votes
1answer
66 views

Can a Log4perl filter access the Mapped Diagnostic Context?

I'm writting some Perl CGI scripts, and am using Log4perl to log to various files. I thought it may be useful to be able to trace a particular (or various) user's activities to a separate log file. I ...
2
votes
1answer
263 views

Can a single perl script running in background hold multiple instances of Log4Perl?

I have a script "server.pl" which is running in background and which is self-logging using Log4Perl. This script continuously reads in a directory and detects new files created in it with ...
2
votes
3answers
665 views

How can I use Log4Perl across modules in Perl?

I am planning to use Log4Perl in my modules for logging. My code structure goes like this I have Start.PL which validates some parameters. I have several modules (PM) file which are interlinked ...
1
vote
1answer
446 views

How can log4perl write to STDERR and a file at the same time?

I tried to set up two appenders, but it seems to only write to STDERR: my $header = "######$scriptname $version"; use Log::Log4perl qw(:easy); Log::Log4perl->easy_init($DEBUG); my $logger = ...
3
votes
3answers
199 views

Which script initialized module?

In Perl, is there any way to tell which .pl script has initialized this instance of a module? Specifically, I'd like to get the name of the script calling a module, which has a Log4perl object it. ...
1
vote
1answer
183 views

How can I mock Log::Log4perl::INFO?

I'm writing new unit tests for an existing module that uses Log::Log4perl like: use Log::Log4perl qw(:easy); The module calls INFO( "important message" );. I'd like to mock this to verify from my ...
1
vote
2answers
1k views

Read console output of a shell script in Perl

Let's say I've got a shell script called print_error.sh looking like this: #!/usr/bin/bash echo "ERROR: Bla bla, yada yada." exit 1 Now I'm in a Perl script, calling this shell script with ...
5
votes
1answer
334 views

Can Perl's Log::Log4perl's log levels be changed dynamically without updating config?

I have a Mason template running under mod_perl, which is using Log::Log4perl. I want to change the log level of a particular appender, but changing the config is too awkward, as it would have to pass ...
3
votes
4answers
317 views

Disposing of Log4perl logger when I no longer need it

I'm using Log4perl as part of a package to capture what a particular DBI connection is doing. My current plan is to create a new logger object for each connection, via ...
0
votes
1answer
104 views

How to switch between different log4perl configurations?

I'm using log4perl with a set of scripts and objects. I'd like to be able to switch between different logging configurations according command line or environment parameters, e.g. in 'verbose' mode, ...
0
votes
1answer
176 views

Deep cloning an object and Log4perl

I am using Storable's dclone() to create copies of various complex objects, which are self-logging with Log4perl loggers attached. Storable complains when it encounters the logger object because it ...
0
votes
2answers
348 views

Double Output in Log4perl Log File

I'm working on a new feature in an existing Perl codebase that will allow us to log the commands being sent to the database. I'm basing the solution off of Log4perl, which prevents me from having to ...
2
votes
3answers
300 views

Self logging Perl modules (without Moose)

I have the same question as was asked HERE but unfortunately I cannot install Moose and I think the solution described there was particular to Moose. Can someone tell me how to the same in old school ...
3
votes
1answer
268 views

Why does USR1 seem to kill Perl, instead of recreating the logfile?

I have a Perl script that I've added logging to, courtesy of Log4perl. The script itself is long-running, and we also need to do log-rotation/archiving on a daily basis. I've opted to use the ...
1
vote
0answers
86 views

Combining log4j and log4perl logs

I have a Java application that launches a Perl program using Runtime.exec, waits for it to return and then continues. I would like the log4j output from the Java application and the log4perl output ...
3
votes
1answer
353 views

How can I make log4perl create log directory if it doesn't exist?

If my logging directory (/home/hss/Data/log/DataImport.log) does not exist when log4perl is initializing, then I get this error: Cannot write to '/home/hss/Data/log/DataImport.log': No such file or ...
0
votes
4answers
270 views

Getting command line options and their values

I want to log options and their arguments from user command after running the script. Consider this command: ./test.pl --ip localhost --id 400154 --class firstgrade ...and many other options and ...
5
votes
2answers
849 views

Log4perl: How do I dynamically load appenders at runtime?

I'd like to have modules managing their logging at runtime, but without having everything referring to a single monolithic config file. When dealing with processes running under different permissions, ...
1
vote
2answers
345 views

Log4perl: separate INFO and ERROR files using easy_init

I am currently sending INFO and above to STDOUT using: Log::Log4perl->easy_init({level=>("$INFO"), layout=>"%d %p - %m%n", file=>"STDOUT"}); How can I send ERROR and above to STDERR?
3
votes
1answer
103 views

Log4Perl bundling logging from several programs into one log

Is there any Logger on CPAN which allows me to bundle logs from several programs into one file with synchronising parallel logging when two programs run the same time and call log4Perl in parallel. ...
6
votes
2answers
746 views

Making self-logging modules with Log::Log4perl

Is there a way to use Log::Log4perl to make a smart self-logging module that logs its operations to a file even in the absence of the calling script not initializing Log4perl? As far as I can tell ...
1
vote
1answer
534 views

How do I make my Log::Log4perl logger work?

Here's the code I have: use strict; use warnings; use Log::Log4perl qw(:easy); Log::Log4perl->init({ level => $DEBUG }); my $logger = Log::Log4perl->get_logger("my.logger"); my $appender ...
4
votes
2answers
146 views

How can I tell if Log4perl emitted any warnings during a run?

I've been using Log4perl extensively in a number of scripts. I'd like to augment those scripts to set an error code if any WARN or ERROR messages have been logged. I couldn't find any obvious way to ...
3
votes
1answer
465 views

Logging within utility classes

I want to adopt logging within several utility classes, e. g. DBI. What is the best practice to do it with Log::Log4perl? I think it is OK to subclass DBI (say, MyDBI) and override some methods there ...
3
votes
2answers
411 views

How can I report the line number with Log4perl and Moose?

Is it possible to get Log4perl to correctly display the line number and package/class of the log event instead of always Method::Delegation at line 99 when used with Moose? In my case, I have created ...
11
votes
2answers
1k views

How can I catch Perl warnings into Log4perl logs?

Log4perl is a great tool for logging. The warnings pragma is also an essential tool. However, when Perl scripts are running as daemons, the Perl warnings, are printed into STDERR where nobody can ...
4
votes
1answer
102 views

How can I log only the INFO level in Log4perl?

log4perl has a threshold option in the configuration file that will log all calls that level or higher. Is there an option of setting it log only one type of call? I want to only log calls of level ...
3
votes
2answers
323 views

How can I disable Log4perl output for a particular class?

I would like to use Log4perl in a project but disable it for a certain class (which is, in this case Net::Amazon). I thought this would be an easy one, but somehow I failed. I tried using use ...
0
votes
2answers
268 views

Where is the Log4perl documentation for configuration?

I am new to the Perl and while doing with my new CR I stuck at the Perl code which is using Log4perl package. Already developed code is using this package and in the configuration file of this ...
4
votes
2answers
786 views

How can I suppress output to stdout and stderr in Log4perl?

I have this sub to initialize my logger: sub initLogfiles{ Log::Log4perl->easy_init($INFO); # We log all debug, info, warn, error and fatal messages. my $userlogappender = ...
9
votes
3answers
3k views

How can I rotate and compress Log4perl log files?

From what I can tell neither Log4Perl or any of its related modules in CPAN supports rotate & compression of log files. Rotation can be accomplished by using: Log::Log4perl::Appender::File ...

1 2