From eb21402b0ca4ef58b5bae9844a0317b6586d8c8c Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 28 Apr 2016 22:41:11 +1000 Subject: [PATCH] cleanup for date to timestamp debug messages --- booking.helper.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booking.helper.inc b/booking.helper.inc index 8c291f3..83adc7b 100644 --- a/booking.helper.inc +++ b/booking.helper.inc @@ -190,7 +190,7 @@ function _booking_change_status($nid, $status_id) function _datearray_to_ts($date) { - watchdog('booking', 'Date Conversion: @info', array('@info' => var_export($date, TRUE))); + //watchdog('booking', 'Date Conversion: @info', array('@info' => var_export($date, TRUE))); date_default_timezone_set(date_default_timezone(FALSE)); $tz = new DateTimeZone(date_default_timezone(FALSE)); @@ -209,7 +209,7 @@ function _datearray_to_ts($date) function _datetime_array_to_ts($date) { - watchdog('booking', 'Date-time Conversion: @info', array('@info' => var_export($date, TRUE))); + //watchdog('booking', 'Date-time Conversion: @info', array('@info' => var_export($date, TRUE))); //watchdog('booking', "Date time conversion timezone configured as: @info", array('@info' => date_default_timezone(FALSE))); date_default_timezone_set(date_default_timezone(FALSE)); $tz = new DateTimeZone(date_default_timezone(FALSE));