forked from friendica/friendica-addons
[pumpio] Cast variable as array before being passed to Logger::info
This commit is contained in:
parent
cd620d2134
commit
b52c4fc04f
|
@ -123,7 +123,7 @@ function pumpio_registerclient(App $a, $host)
|
||||||
|
|
||||||
if ($curl_info['http_code'] == '200') {
|
if ($curl_info['http_code'] == '200') {
|
||||||
$values = json_decode($s);
|
$values = json_decode($s);
|
||||||
Logger::info('pumpio_registerclient: success ', $values);
|
Logger::info('pumpio_registerclient: success ', (array)$values);
|
||||||
return $values;
|
return $values;
|
||||||
}
|
}
|
||||||
Logger::info('pumpio_registerclient: failed: ', $curl_info);
|
Logger::info('pumpio_registerclient: failed: ', $curl_info);
|
||||||
|
|
Loading…
Reference in a new issue