Skip to content

Commit

Permalink
Remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-42 committed May 9, 2014
1 parent e49b70a commit 52d8b83
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion iod_json.hh
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ namespace iod_internals
int w = 20;
int b = pos > w ? pos - w : 0;
int e = pos < int(str.size()) - w ? pos + w : int(str.size()) - 1;
std::cout << b << " " << e << " " << str.size() <<std::endl;
std::string near(str.begin() + b, str.begin() + e);
err << "Json parse error near " << near;
return std::runtime_error(err.str());
Expand Down

0 comments on commit 52d8b83

Please sign in to comment.