Help for this page
info 'This is an info log item'. debug "the value of this variable is: '$this'"
# log die, warn, info, and debug events to mylog.log, but don't # show debug events on the console. use Log ( file=>'mylog.log', warn => 2, info => 2, debug => 1 );
package Log; ... 1; # modules must return a true value. __END__