From 13f73878b6dd4febce7a2b22e9d25494bf280f91 Mon Sep 17 00:00:00 2001 From: William Panting Date: Thu, 17 Oct 2013 14:39:21 -0300 Subject: [PATCH] ingest form watchdog --- includes/ingest.form.inc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/includes/ingest.form.inc b/includes/ingest.form.inc index dbeb8281..0ed75385 100644 --- a/includes/ingest.form.inc +++ b/includes/ingest.form.inc @@ -57,6 +57,12 @@ function islandora_ingest_form(array $form, array &$form_state, array $configura return islandora_ingest_form_execute_step($form, $form_state); } catch (Exception $e) { + watchdog( + 'islandora', + 'Exception during ingest form processing with Message: "@exception", and Trace: @trace', + array('@exception' => $e->getMessage(), '@trace' => $e->getTraceAsString()), + WATCHDOG_ERROR + ); drupal_set_message($e->getMessage(), 'error'); return array(array( '#markup' => l(t('Back'), 'javascript:window.history.back();', array('external' => TRUE))));