Skip to content

Commit 562c902

Browse files
do not limit response
1 parent c74eff1 commit 562c902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/soapNTLM/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function __doRequest($request, $location, $action, $version, $one_way = 0
9393
"Location" => $location,
9494
"HttpStatus" => $http_status,
9595
"Request" => $request,
96-
"Response" => strlen($response) > 2000 ? substr($response, 0, 2000) . "..." : $response,
96+
"Response" => $response,
9797
"RequestTime" => curl_getinfo($ch, CURLINFO_TOTAL_TIME),
9898
"RequestConnectTime" => curl_getinfo($ch, CURLINFO_CONNECT_TIME),
9999
"Time" => microtime(true) - $start_time

0 commit comments

Comments
 (0)