We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725dc75 commit 41e499bCopy full SHA for 41e499b
1 file changed
src/com/namelessmc/NamelessAPI/Request.java
@@ -166,7 +166,11 @@ public void connect() throws NamelessException {
166
responseBuilder.append(responseString);
167
168
JsonParser parser = new JsonParser();
169
-
+
170
+ if (NamelessAPI.DEBUG_MODE) {
171
+ System.out.println(String.format("NamelessAPI > Response: %s", responseBuilder.toString()));
172
+ }
173
174
response = parser.parse(responseBuilder.toString()).getAsJsonObject();
175
176
inputStream.close();
0 commit comments