Hi! I start use Aspose PHP SDK for converting .doc and .docx files to pdf,html,txt.
I use RabbitMQ for async and I see in log file text like this while file proccessing:
* Hostname was found in DNS cache
* Trying 52.10.77.248...
* Connected to api.aspose.com (52.10.77.248) port 80 (#8)
* Server auth using Basic with user 'user'
> PUT /v1.1/words/convert?format=html&appSID=29031e1a-ca93-41a2-a38c-bae7c04a9065&signature=iTXTy69T41lQf2EHxsYFmEYv0bg HTTP/1.1
Authorization: Basic dXNlcjpwYXNzd29yZA==
Host: api.aspose.com
Accept: application/xml
Content-Type: application/xml
x-aspose-client: PHPSDK/v1.0
Content-Length: 6238
Expect: 100-continue
< HTTP/1.1 100 Continue
* We are completely uploaded and fine
< HTTP/1.1 200 OK
< Access-Control-Allow-Origin: *
< Cache-Control: no-cache
< Content-Disposition: inline; filename=converted.html
< Content-Type: text/html
< Date: Thu, 20 Oct 2016 09:57:23 GMT
< Expires: -1
< Pragma: no-cache
* Server Microsoft-IIS/8.0 is not blacklisted
< Server: Microsoft-IIS/8.0
< X-AspNet-Version: 4.0.30319
< X-Powered-By: ASP.NET
< Content-Length: 8561
< Connection: keep-alive
<
* Connection #8 to host api.aspose.com left intact
* Hostname was found in DNS cache
* Trying 52.10.77.248...
* Connected to api.aspose.com (52.10.77.248) port 80 (#9)
* Server auth using Basic with user 'user'
> PUT /v1.1/words/convert?format=html&appSID=29031e1a-ca93-41a2-a38c-bae7c04a9065&signature=iTXTy69T41lQf2EHxsYFmEYv0bg HTTP/1.1
Authorization: Basic dXNlcjpwYXNzd29yZA==
Host: api.aspose.com
Accept: application/xml
Content-Type: application/xml
x-aspose-client: PHPSDK/v1.0
Content-Length: 7979
Expect: 100-continue
< HTTP/1.1 100 Continue
* We are completely uploaded and fine
< HTTP/1.1 200 OK
< Access-Control-Allow-Origin: *
< Cache-Control: no-cache
< Content-Disposition: inline; filename=converted.html
< Content-Type: text/html
< Date: Thu, 20 Oct 2016 09:57:30 GMT
< Expires: -1
< Pragma: no-cache
* Server Microsoft-IIS/8.0 is not blacklisted
< Server: Microsoft-IIS/8.0
< X-AspNet-Version: 4.0.30319
< X-Powered-By: ASP.NET
< Content-Length: 10302
< Connection: keep-alive
<
* Connection #9 to host api.aspose.com left intact</div>
My log file growing very fast and I cannot see important massages in file.
I try disable RabbitMQ logging and set debug mode to false in php sdk, but it has no effect.
How I can disable this massage?
Thank you!