Browse Source

Merge pull request #33201 from Xrayez/json-err-print

Provide and print error messages for JSON parsing
Rémi Verschelde 5 years ago
parent
commit
55fd63d9de
2 changed files with 4 additions and 0 deletions
  1. 3 0
      core/bind/core_bind.cpp
  2. 1 0
      modules/gdscript/gdscript_functions.cpp

+ 3 - 0
core/bind/core_bind.cpp

@@ -3165,6 +3165,9 @@ Ref<JSONParseResult> _JSON::parse(const String &p_json) {
 
 	result->error = JSON::parse(p_json, result->result, result->error_string, result->error_line);
 
+	if (result->error != OK) {
+		ERR_PRINTS(vformat("Error parsing JSON at line %s: %s", result->error_line, result->error_string));
+	}
 	return result;
 }
 

+ 1 - 0
modules/gdscript/gdscript_functions.cpp

@@ -1274,6 +1274,7 @@ void GDScriptFunctions::call(Function p_func, const Variant **p_args, int p_arg_
 
 			if (err != OK) {
 				r_ret = Variant();
+				ERR_PRINTS(vformat("Error parsing JSON at line %s: %s", errl, errs));
 			}
 
 		} break;