Skip to content

Commit d3c4ed8

Browse files
committed
chore: remove useless print
1 parent a78e11a commit d3c4ed8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Qiniu/Storage/ArgusManager.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ public function censorStatus($jobid)
8484
$url = $scheme . Config::ARGUS_HOST . "/v3/jobs/video/$jobid";
8585
$response = $this->get($url);
8686
if (!$response->ok()) {
87-
print("statusCode: " . $response->statusCode);
8887
return array(null, new Error($url, $response));
8988
}
9089
return array($response->json(), null);
@@ -118,7 +117,6 @@ private function post($url, $body)
118117
$headers['Content-Type'] = 'application/json';
119118
$ret = Client::post($url, $body, $headers, $this->proxy->makeReqOpt());
120119
if (!$ret->ok()) {
121-
print("statusCode: " . $ret->statusCode);
122120
return array(null, new Error($url, $ret));
123121
}
124122
$r = ($ret->body === null) ? array() : $ret->json();

0 commit comments

Comments
 (0)