๐ŸžDebug console

You can get the output from the console with withConsoleLines():

$clusteer = Clusteer::to('https://example.com')
    ->waitUntilAllRequestsFinish()
    ->withConsoleLines()
    ->get();
$lines = $clusteer->getConsoleLines();

Last updated