nicer toString

This commit is contained in:
rusefillc 2022-04-10 12:28:14 -04:00
parent c6ef502975
commit e9c00c4663
1 changed files with 1 additions and 1 deletions

View File

@ -47,6 +47,6 @@ public class BufferedSerialIoStream extends SerialIoStream {
@Override
public String toString() {
return port + " " + super.toString();
return "serial=" + port;
}
}