增加日志

This commit is contained in:
ZweiCD 2020-07-29 11:50:07 +08:00
parent 17e47385c0
commit c7f15b88ba

View File

@ -419,6 +419,7 @@ class QimenWms extends BaseWms implements WmsInterface
final protected function post($body, $params = [], $headers = ['content-type' => 'text/xml; charset = utf-8'], $ret = []) { final protected function post($body, $params = [], $headers = ['content-type' => 'text/xml; charset = utf-8'], $ret = []) {
$url = $this->config['base_uri']; $url = $this->config['base_uri'];
$url = $url . http_build_query($params); $url = $url . http_build_query($params);
app('log')->info('php-wms-client-url', ['data' => $url]);
$data = [ $data = [
'body' => $body, 'body' => $body,
'headers' => $headers, 'headers' => $headers,