add Node.toString

This commit is contained in:
Brenton Bostick 2023-01-31 13:55:52 -05:00
parent 90bf300bd8
commit 7ef68a9d6a

View File

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