diff --git a/classes/controllers/FrmFormActionsController.php b/classes/controllers/FrmFormActionsController.php index c6cc4b5356..3ded0df1e7 100644 --- a/classes/controllers/FrmFormActionsController.php +++ b/classes/controllers/FrmFormActionsController.php @@ -502,7 +502,23 @@ public static function fill_action() { * @return bool */ private static function should_show_log_message( $action_type ) { - $logging = array( 'api', 'salesforce', 'constantcontact', 'activecampaign' ); + $logging = array( + 'activecampaign', + 'api', + 'aweber', + 'campaignmonitor', + 'constantcontact', + 'convertkit', + 'getresponse', + 'googlespreadsheet', + 'hubspot', + 'mailchimp', + 'mailpoet', + 'n8n', + 'salesforce', + 'twilio', + 'zapier', + ); return in_array( $action_type, $logging, true ) && ! function_exists( 'frm_log_autoloader' ); }