diff --git a/clients/java1.8_client/client/src/main/java/core/API/Debug.java b/clients/java1.8_client/client/src/main/java/core/API/Debug.java index 867b94e..9e29392 100644 --- a/clients/java1.8_client/client/src/main/java/core/API/Debug.java +++ b/clients/java1.8_client/client/src/main/java/core/API/Debug.java @@ -17,7 +17,7 @@ public Debug(){ public void log(Object object) { JSONObject jo = new JSONObject(); - jo.put("action", "log"); + jo.put("command", "log"); JSONObject args = new JSONObject(); args.put("text", object.toString()); jo.put("args", args); @@ -26,7 +26,7 @@ public void log(Object object) { public void exception(Object object) { JSONObject jo = new JSONObject(); - jo.put("action", "exception"); + jo.put("command", "exception"); JSONObject args = new JSONObject(); args.put("text", object.toString()); jo.put("args", args);