my $logger = new Log();
$logger->error("an error has occured");
|
- Output defaults to STDERR but can be set to files in the constructor or using accessors.
$logger->error_log($filehandle);
|
- Log also supports info, warn and digest:
$logger->info("info message");
$logger->warn("warning!");
$logger->info_log($filehandle);
$logger->warn_log($filehandle);
|
There is also a digest log, which is never called externally, but the output of info warn and error are all outputted to the digest file, set with:
$logger->digest_log($filehandle);
|