From 9901c22f2410a15fe220d031358c7adbf3fb6bf9 Mon Sep 17 00:00:00 2001 From: Adam Roses Wight Date: Thu, 1 Oct 2015 01:10:25 -0700 Subject: [PATCH] Log upgrade steps This puts the meter back into thermometer watching. Prints a granular log line for each upgrade migration patch. TODO: * The Drush harness should install a logging callback that captures Civi output and displays it on the console. Bug: T99842 Change-Id: I8977b6b06b4eac9cd7e5ac5768c783d8560abfe3 --- CRM/Queue/Runner.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Queue/Runner.php b/CRM/Queue/Runner.php index f503bd90a1..1ea005717f 100644 --- a/CRM/Queue/Runner.php +++ b/CRM/Queue/Runner.php @@ -210,6 +210,7 @@ class CRM_Queue_Runner { $exception = NULL; try { + CRM_Core_Error::debug_log_message("Running task: " . $this->lastTaskTitle); $isOK = $item->data->run($this->getTaskContext()); if (!$isOK) { $exception = new Exception('Task returned false'); -- 2.25.1