Merge pull request #1336 from MrPetovan/bug/12405-pumpio-log

[pumpio] Cast variable as array before being passed to Logger::info
pull/1338/head
Tobias Diekershoff 2022-12-15 06:31:24 +01:00 committed by GitHub
commit 239003fa6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ function pumpio_registerclient(App $a, $host)
if ($curl_info['http_code'] == '200') {
$values = json_decode($s);
Logger::info('pumpio_registerclient: success ', $values);
Logger::info('pumpio_registerclient: success ', (array)$values);
return $values;
}
Logger::info('pumpio_registerclient: failed: ', $curl_info);