remove std::cerr in IXRedisServer which triggers a tsan error

This commit is contained in:
Benjamin Sergeant 2020-03-20 17:50:08 -07:00
parent 5ce846f48b
commit 10e132e8ef

View File

@ -11,7 +11,6 @@
#include <ixwebsocket/IXSocket.h>
#include <ixwebsocket/IXCancellationRequest.h>
#include <fstream>
#include <iostream>
#include <sstream>
#include <vector>
@ -188,12 +187,6 @@ namespace ix
tokens.push_back(readResult.second);
}
for (auto&& token : tokens)
{
std::cerr << token << " ";
}
std::cerr << std::endl;
return true;
}