home *** CD-ROM | disk | FTP | other *** search
Wrap
<HTML> <HEAD> <TITLE>warnings - Perl pragma to control optional warnings</TITLE> <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css"> <LINK REV="made" HREF="mailto:"> </HEAD> <BODY> <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%> <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc"> <STRONG><P CLASS=block> warnings - Perl pragma to control optional warnings</P></STRONG> </TD></TR> </TABLE> <A NAME="__index__"></A> <!-- INDEX BEGIN --> <UL> <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI> <LI><A HREF="#synopsis">SYNOPSIS</A></LI> <LI><A HREF="#description">DESCRIPTION</A></LI> </UL> <!-- INDEX END --> <HR> <P> <H1><A NAME="name">NAME</A></H1> <P>warnings - Perl pragma to control optional warnings</P> <P> <HR> <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1> <UL> <LI>Linux</LI> <LI>Solaris</LI> <LI>Windows</LI> </UL> <HR> <H1><A NAME="synopsis">SYNOPSIS</A></H1> <PRE> use warnings; no warnings;</PRE> <PRE> use warnings "all"; no warnings "all";</PRE> <PRE> use warnings::register; if (warnings::enabled()) { warnings::warn("some warning"); }</PRE> <PRE> if (warnings::enabled("void")) { warnings::warn("void", "some warning"); }</PRE> <P> <HR> <H1><A NAME="description">DESCRIPTION</A></H1> <P>If no import list is supplied, all possible warnings are either enabled or disabled.</P> <P>A number of functions are provided to assist module authors.</P> <DL> <DT><STRONG><A NAME="item_use_warnings%3A%3Aregister">use warnings::register</A></STRONG><BR> <DD> Creates a new warnings category which has the same name as the module where the call to the pragma is used. <P></P> <DT><STRONG><A NAME="item_enabled">warnings::enabled([$category])</A></STRONG><BR> <DD> Returns TRUE if the warnings category <CODE>$category</CODE> is enabled in the calling module. Otherwise returns FALSE. <P>If the parameter, <CODE>$category</CODE>, isn't supplied, the current package name will be used.</P> <P></P> <DT><STRONG><A NAME="item_warn">warnings::warn([$category,] $message)</A></STRONG><BR> <DD> If the calling module has <EM>not</EM> set <CODE>$category</CODE> to ``FATAL'', print <CODE>$message</CODE> to STDERR. If the calling module has set <CODE>$category</CODE> to ``FATAL'', print <CODE>$message</CODE> STDERR then die. <P>If the parameter, <CODE>$category</CODE>, isn't supplied, the current package name will be used.</P> <P></P></DL> <P>See <A HREF="../lib/Pod/perlmod.html#pragmatic modules">Pragmatic Modules in the perlmod manpage</A> and <A HREF="../lib/Pod/perllexwarn.html">the perllexwarn manpage</A>.</P> <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%> <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc"> <STRONG><P CLASS=block> warnings - Perl pragma to control optional warnings</P></STRONG> </TD></TR> </TABLE> </BODY> </HTML>