From 748dffe38a085216f0dc729e74d7447ce76c1319 Mon Sep 17 00:00:00 2001 From: Shelane French Date: Tue, 21 Apr 2020 10:14:17 -0700 Subject: [PATCH] adds bootstrap results to debug log --- src/Robo/Inspector/Inspector.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Robo/Inspector/Inspector.php b/src/Robo/Inspector/Inspector.php index 6eb452c90..830b19184 100644 --- a/src/Robo/Inspector/Inspector.php +++ b/src/Robo/Inspector/Inspector.php @@ -233,6 +233,7 @@ public function isDrupalInstalled() { $result = $this->executor->drush("--uri=$uri status bootstrap")->run(); $output = trim($result->getMessage()); $installed = $result->wasSuccessful() && $output == 'Drupal bootstrap : Successful'; + $this->logger->debug("Drupal bootstrap results: $output"); return $installed; }