Padre::Logger.3pm

Langue: en

Version: 2010-06-02 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Padre::Logger - Compile-time logging library for Padre

SYNOPSIS

   # In the launch/dev.pl script
   BEGIN {
       $Padre::Logger::DEBUG = 1;
   }
 
   use Padre;
 
   # In each Padre::Foo class
   use Padre::Logger;
 
   sub method {
       TRACE('->method') if DEBUG;
 
       # Your code as normal
   }
 
 

DESCRIPTION

This is a logging utility class for Padre. It provides a basic set of simple functionality that allows for logging/debugging/tracing statements to be used in Padre that will compile out of the application when not in use.