add Node.toString

This commit is contained in:
Brenton Bostick 2023-01-31 13:55:52 -05:00 committed by Sean OMeara
parent eab289aed9
commit d1c2d4b996

View file

@ -130,6 +130,11 @@ public class Node {
close(); close();
} }
@Override
public String toString() {
return "Node(" + nodeId + ")";
}
/** /**
* Process a frame from a virtual network port * Process a frame from a virtual network port
* *