Logging to system log
mrtoner - April 14, 2009 - 06:38
| Project: | Workflow-ng |
| Version: | 5.x-2.2 |
| Component: | Miscellaneous |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
Logging to the system log is useful for those times when you need to know what's happening during, say, a PayPal IPN transaction. I've done this by modifying workflow_ng_show_log()
<?php
function workflow_ng_show_log($log) {
...
drupal_set_message(implode('<br />', $output));
watchdog('workflow-ng',implode('<br />', $output),WATCHDOG_NOTICE);
...
}
?>I'd like to see something to toggle this behavior, even perhaps a UI.
Don
