We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e896f38 commit bbea942Copy full SHA for bbea942
src/Robo/Commands/Blt/DoctorCommand.php
@@ -3,6 +3,7 @@
3
namespace Acquia\Blt\Robo\Commands\Blt;
4
5
use Acquia\Blt\Robo\BltTasks;
6
+use Robo\Contract\VerbosityThresholdInterface;
7
use Symfony\Component\Yaml\Yaml;
8
9
/**
@@ -17,6 +18,11 @@ class DoctorCommand extends BltTasks {
17
18
*/
19
public function doctor() {
20
21
+ $this->taskDrush()
22
+ ->drush('cc drush')
23
+ ->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
24
+ ->run();
25
+
26
// Attempt to run BLT doctor inside of a VM.
27
if ($this->getInspector()->isDrupalVmLocallyInitialized()
28
&& $this->getInspector()->isDrupalVmBooted()
0 commit comments