[FIX] Remove socket command debug

This commit is contained in:
Gravita 2024-12-31 14:35:42 +07:00
parent 0111b2ca2b
commit d7a379383b
No known key found for this signature in database
GPG key ID: 543A8F335C9CD633

View file

@ -73,7 +73,6 @@ public void run() {
if (bytesRead < 0) {
break;
}
logger.info("DEBUG: readed {}", new String(buffer.array(), 0, buffer.limit()));
for (var i=0;i<buffer.limit();i++) {
if(buffer.get(i) == '\n') {
command = new String(buffer.array(), 0, i);