NAME
Require::HookChain::log::stderr - Log a message to STDERR
VERSION
This document describes version 0.016 of Require::HookChain::log::stderr (from Perl distribution Require-HookChain), released on 2023-12-05.
SYNOPSIS
use Require::HookChain 'log::stderr';
# now each time we require(), a message is printed to STDERR
A demo (nauniq is a Perl script you can get from CPAN):
% PERL5OPT="-MRequire::HookChain=log::stderr" nauniq ~/samples/1.csv
Require::HookChain::log::stderr: Require-ing strict.pm (called from package main file /home/u1/perl5/perlbrew/perls/perl-5.34.0/bin/nauniq:4) ...
Require::HookChain::log::stderr: Require-ing warnings.pm (called from package main file /home/u1/perl5/perlbrew/perls/perl-5.34.0/bin/nauniq:5) ...
Require::HookChain::log::stderr: Require-ing App/nauniq.pm (called from package main file /home/u1/perl5/perlbrew/perls/perl-5.34.0/bin/nauniq:7) ...
Require::HookChain::log::stderr: Require-ing Getopt/Long.pm (called from package main file /home/u1/perl5/perlbrew/perls/perl-5.34.0/bin/nauniq:8) ...
Require::HookChain::log::stderr: Require-ing vars.pm (called from package Getopt::Long file /loader/0x559d7b7578b0/Getopt/Long.pm:20) ...
Require::HookChain::log::stderr: Require-ing warnings/register.pm (called from package vars file /loader/0x559d7b7578b0/vars.pm:7) ...
Require::HookChain::log::stderr: Require-ing constant.pm (called from package Getopt::Long file /loader/0x559d7b7578b0/Getopt/Long.pm:220) ...
Require::HookChain::log::stderr: Require-ing overload.pm (called from package Getopt::Long::CallBack file /loader/0x559d7b7578b0/Getopt/Long.pm:1574) ...
Require::HookChain::log::stderr: Require-ing overloading.pm (called from package overload file /loader/0x559d7b7578b0/overload.pm:84) ...
Require::HookChain::log::stderr: Require-ing Exporter/Heavy.pm (called from package Exporter file /home/u1/perl5/perlbrew/perls/perl-5.34.0/lib/5.34.0/Exporter.pm:13) ...
...
DESCRIPTION
This hook should be put at the beginning to be able to log before other hooks or source loads the module, so it's best to require this hook last, e.g.:
use Require::HookChain 'other::hook';
use Require::HookChain 'other::hook2';
...
use Require::HookChain 'log::stderr';
or:
use Require::HookChain 'log::stderr';
use Require::HookChain -end=>1, 'other::hook';
use Require::HookChain -end=>1, 'other::hook2';
...
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Require-HookChain.
SOURCE
Source repository is at https://github.com/perlancar/perl-Require-HookChain.
SEE ALSO
Require::HookChain::log::logger
AUTHOR
perlancar <perlancar@cpan.org>
CONTRIBUTING
To contribute, you can send patches by email/via RT, or send pull requests on GitHub.
Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me.
COPYRIGHT AND LICENSE
This software is copyright (c) 2023, 2022, 2020, 2017 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Require-HookChain
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.