Administrator
3 hours ago 1278ee2bd43b401489b4377b0eee5259b3d5bbbb
src/main/java/com/xcong/excoin/modules/okxApi/OkxRestClient.java
@@ -86,7 +86,9 @@
            int code = conn.getResponseCode();
            String response = readResponse(conn);
            log.info("[REST] GET {} → HTTP {} body:{}", path, code, response);
            if (code < 200 || code >= 300) {
                log.error("[REST] GET {} → HTTP {} body:{}", path, code, response);
            }
            return JSON.parseObject(response);
        } catch (Exception e) {
@@ -128,7 +130,9 @@
            int code = conn.getResponseCode();
            String response = readResponse(conn);
            log.info("[REST] POST {} → HTTP {} body:{}", path, code, response);
            if (code < 200 || code >= 300) {
                log.error("[REST] POST {} → HTTP {} body:{}", path, code, response);
            }
            return JSON.parseObject(response);
        } catch (Exception e) {