Merge pull request #578 from BigBotNetwork/greg-dev

Implement important error logging
This commit is contained in:
Skidder 2020-11-18 02:42:12 +01:00 committed by GitHub
commit 82652e45f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>Hadder</groupId>
<artifactId>Hadder</artifactId>
<version>1.3.23</version>
<version>1.3.24</version>
<name>Hadder</name>
<inceptionYear>2019</inceptionYear>
<description>Hadder is a multi-purpose Discord bot.</description>

View file

@ -59,6 +59,7 @@ public class Rethink {
try {
return new JSONObject(response);
} catch (JSONException e) {
e.printStackTrace();
System.out.println(response);
return null;
}