We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 365e414 commit b693cc1Copy full SHA for b693cc1
src/lib/Browser/Context/DebuggingContext.php
@@ -115,9 +115,11 @@ private function takeScreenshot(AfterStepScope $scope): string
115
{
116
$screenshotDir = getenv('GITHUB_WORKSPACE') ? getenv('GITHUB_WORKSPACE') . '/behat-output' : 'behat-output';
117
$workspace = getenv('GITHUB_WORKSPACE') ?: getcwd();
118
- $this->logger->debug(sprintf('GITHUB_WORKSPACE: %s', $workspace));
+ $this->logger->error(sprintf('GITHUB_WORKSPACE: %s', $workspace));
119
+ $this->logger->info(sprintf('GITHUB_WORKSPACE: %s', $workspace));
120
$this->logger->error(sprintf('Screenshot dir should be: %s', $screenshotDir));
121
122
+
123
if (!is_dir($screenshotDir)) {
124
mkdir($screenshotDir, 0777, true);
125
}
0 commit comments