Description
The wsf_licensing_log filter hook allows you to enable license activity logging to help determine issues when communicating with our licensing server.
A full description of its use can be found here:
Usage
add_filter( 'wsf_licensing_log', 'my_hook_function', 10, 1 );
Parameters
$enabledBooleanSet to true to enable license logging.Default value:false
Example
// Enable license logging to /wp-content/ws-form/licensing/licensing.log add_filter( 'wsf_licensing_log', '__return_true' );
Source File
This hook can be found in:<plugin root>/includes/class-ws-form-licensing.php