Skip to content

Commit

Permalink
Ignores timeouts on logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Dec 21, 2023
1 parent f8bc60d commit e71babf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Commands/StartFrankenPhpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,11 @@ protected function writeServerOutput($server)
}

if ($debug['level'] !== 'info') {
// Request timeout...
if (isset($debug['exit_status']) && $debug['exit_status'] === 255) {
return;
}

return $this->error($debug['msg']);
}
});
Expand Down

0 comments on commit e71babf

Please sign in to comment.