NAME SuperLog - Consistent object-oriented interface for log. SYNOPSIS # Using a module use SuperLog; # Explicit creation of object Log. my $log = Log->new # Binding a filename. $log->filename('log.txt'); # Set the mode of log. # with char 'w' we indicate that the data is appending into a file. # with char 'n' we indicate that the filename is creating again. $log->write('w'); # Open a file $log->open; # Write a data value into a file. $log->write(':]'); # Close a file $log->close; # enjoy! :] BUGS Please report bugs using the CPAN Request Tracker at http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Random-OO AUTHOR Damian Nardelli [dnardelli@iplan.com.ar] COPYRIGHT Copyright (c) 2005 by Damian Nardelli This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module.