|
NAMELog::Any::IfLOG - Load Log::Any only if "logging is enabled"VERSIONThis document describes version 0.090 of Log::Any::IfLOG (from Perl distribution Log-Any-IfLOG), released on 2019-01-09.SYNOPSISuse Log::Any::IfLOG '$log'; DESCRIPTIONThis module is a drop-in replacement/wrapper for Log::Any to be used from your modules. This is a quick-hack solution to avoid the cost of loading Log::Any under "normal condition". Since Log::Any 1.00, startup overhead increases to about 7-10ms on my PC/laptop (from under 1ms for the previous version). Because I want to keep startup overhead of CLI apps under 50ms (see Perinci::CmdLine::Lite) to keep tab completion from getting a noticeable lag, every millisecond counts.This module will only load Log::Any when "logging is enabled". Otherwise, it will just return without loading anything. If $log is requested in import, a fake object is returned that responds to methods like "debug", "is_debug" and so on but will do nothing when called and just return 0. To determine "logging is enabled":
VARIABLES$ENABLE_LOG => boolThis setting can be forced to force loading Log::Any or not.ENVIRONMENTLOG => boolTRACE => boolDEBUG => boolVERBOSE => boolQUIET => boolLOG_LEVEL => strHOMEPAGEPlease visit the project's homepage at <https://metacpan.org/release/Log-Any-IfLOG>.SOURCESource repository is at <https://github.com/perlancar/perl-Log-Any-IfLOG>.BUGSPlease report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Log-Any-IfLOG>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. SEE ALSOLog::Any<http://github.com/dagolden/Log-Any/issues/24> AUTHORperlancar <perlancar@cpan.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2019, 2015 by 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.
Visit the GSP FreeBSD Man Page Interface. |