The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Data::CTable::ProgressLogger - CTable that stores messages in the object

SYNOPSIS

        my $Table = Data::CTable::ProgressLogger->new("mydata.txt");
        # ... do stuff...
        $Table->write();
        $Table->show_log();

OVERVIEW

ProgressLogger is a subclass of Data::CTable.

The only difference is that it enables per-instance progress by defaul, but it stores progress messages in the object instead of sending them to STDERR.

Later, they can be gotten in an array by calling the log() method or dumped with show_log().