Remove a debug print

This commit is contained in:
Richard Stanway 2014-02-17 15:27:48 +01:00
parent 89e4bea0c0
commit db72f34e24

View File

@ -131,7 +131,6 @@ namespace
bool HTTPPostData(String url, String data, int &response, List<BYTE> *resultBody=nullptr, String const &headers=String())
{
OutputDebugString(data.Array());
LPSTR str = data.CreateUTF8String();
bool result = HTTPPostData(url, str, strlen(str), response, resultBody, headers);
Free(str);