summaryrefslogtreecommitdiff
path: root/src/convert_json.cpp
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2016-01-28 23:53:58 +0100
committerest31 <MTest31@outlook.com>2016-01-28 23:53:58 +0100
commit860d70bd0e228ee542e3e559961bfc7e56888d77 (patch)
tree61e29746f8e88acfdb6beb3a90ed6782e97d6ca4 /src/convert_json.cpp
parente52ebda8b2273bbd80573838d6dbafb31ee2cd2b (diff)
downloadminetest-860d70bd0e228ee542e3e559961bfc7e56888d77.tar.gz
minetest-860d70bd0e228ee542e3e559961bfc7e56888d77.tar.bz2
minetest-860d70bd0e228ee542e3e559961bfc7e56888d77.zip
Don't print whole json data buffer to errorstream on error
`errorstream` must not be overly verbose as clientside it is directly printed onto the ingame chat window. These days, the serverlist can contain > 200k bytes, so better print it to warningstream if the data buffer is too long.
Diffstat (limited to 'src/convert_json.cpp')
-rw-r--r--src/convert_json.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/convert_json.cpp b/src/convert_json.cpp
index e03508e21..e548c45f5 100644
--- a/src/convert_json.cpp
+++ b/src/convert_json.cpp
@@ -52,7 +52,13 @@ Json::Value fetchJsonValue(const std::string &url,
if (!reader.parse(stream, root)) {
errorstream << "URL: " << url << std::endl;
errorstream << "Failed to parse json data " << reader.getFormattedErrorMessages();
- errorstream << "data: \"" << fetch_result.data << "\"" << std::endl;
+ if (fetch_result.data.size() > 100) {
+ errorstream << "Data (" << fetch_result.data.size()
+ << " bytes) printed to warningstream." << std::endl;
+ warningstream << "data: \"" << fetch_result.data << "\"" << std::endl;
+ } else {
+ errorstream << "data: \"" << fetch_result.data << "\"" << std::endl;
+ }
return Json::Value();
}