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 directory
Is there a way to make it create the directory by itself without me having to specify the directory anywhere except in my log.conf file?
I am quite sure that
Log::Log4perl::Appender::File
do not create any directories. Probably easiest method would be to subclass it and overridefile_open
method with directory detection/creation code, followed by call original method.