New feature to limit the maximum number of rows to keep in the log table
Added
- Feature to limit the maximum number of rows to keep in the log table. Use
set_max_table_rows()
method on the handler instance to configure the limit.
Configure maximum number of rows to keep:
$wordPressHandler->set_max_table_rows( 250000 );
Old entries are deleted when the limit is reached.
Improved
- README.md now has a section about v2 and v1 differences.