summaryrefslogtreecommitdiff
path: root/httptnt
diff options
context:
space:
mode:
Diffstat (limited to 'httptnt')
-rw-r--r--httptnt/resourceStreamer.ecpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/httptnt/resourceStreamer.ecpp b/httptnt/resourceStreamer.ecpp
index ecb3eae..9579fe6 100644
--- a/httptnt/resourceStreamer.ecpp
+++ b/httptnt/resourceStreamer.ecpp
@@ -67,8 +67,6 @@ int doRequest(tnt::HttpReply reply, tnt::HttpRequest request, std::string object
if(to <= 0 || to > contentLength) to = contentLength;
length = to - from;
hasRange = true;
-
- cerr << from << " - " << to << "/" << contentLength << endl;
std::stringstream contentRangeHeader;
contentRangeHeader << "bytes " << from << "-" << to << "/" << contentLength;