Skip to content
Snippets Groups Projects
Commit 3b96f20d authored by mattwire's avatar mattwire Committed by mattwire
Browse files

Exclude paymentprocessor_webhook from logging

parent 8c7d3951
No related branches found
Tags 0.9.8
1 merge request!20Merge 1.0 into master
...@@ -232,3 +232,12 @@ function mjwshared_civicrm_links($op, $objectName, $objectId, &$links, &$mask, & ...@@ -232,3 +232,12 @@ function mjwshared_civicrm_links($op, $objectName, $objectId, &$links, &$mask, &
} }
} }
} }
/**
* Implements hook_civicrm_alterLogTables().
*
* Exclude tables from logging tables since they hold mostly temp data.
*/
function mjwshared_civicrm_alterLogTables(&$logTableSpec) {
unset($logTableSpec['civicrm_paymentprocessor_webhook']);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment