diff --git a/src/univalue/lib/univalue.cpp b/src/univalue/lib/univalue.cpp index 105614568..0e8005f23 100644 --- a/src/univalue/lib/univalue.cpp +++ b/src/univalue/lib/univalue.cpp @@ -19,7 +19,7 @@ namespace { static bool ParsePrechecks(const std::string& str) { - fprintf(stderr,"Parse.(%s)\n",str.c_str()); + //fprintf(stderr,"Parse.(%s)\n",str.c_str()); if (str.empty()) // No empty string allowed return false; if (str.size() >= 1 && (json_isspace(str[0]) || json_isspace(str[str.size()-1]))) // No padding allowed