Skip to content

Commit 1b0b1ba

Browse files
committed
Fix error_log argument type in start.php
error_log() expects int as second argument (message_type), but was being passed an array. Removed erroneous $hwSummary argument.
1 parent 779ea28 commit 1b0b1ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

start.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
implode(',', $hwSummary['vendors'] ?? ['none']),
215215
$hwSummary['chosen_vendor'] ?? 'none',
216216
$w->id ?? '?'
217-
), $hwSummary);
217+
));
218218

219219
LoggerFactory::get(LogChannels::STREAMING)->info(
220220
'Hardware acceleration probed at worker start',

0 commit comments

Comments
 (0)