chore: remove debug output

This commit is contained in:
pk5ls20
2024-11-12 04:08:51 +08:00
parent 98c65c4923
commit 4520a20bd4

View File

@@ -31,9 +31,7 @@ export class PacketClientContext {
} }
async sendOidbPacket(pkt: OidbPacket, rsp = false): Promise<Buffer> { async sendOidbPacket(pkt: OidbPacket, rsp = false): Promise<Buffer> {
console.log("REQ", pkt.cmd, pkt.data);
const raw = await this._client.sendOidbPacket(pkt, rsp); const raw = await this._client.sendOidbPacket(pkt, rsp);
console.log("RES", raw.cmd, raw.hex_data);
return Buffer.from(raw.hex_data, "hex"); return Buffer.from(raw.hex_data, "hex");
} }