refactor: 调整操作数栈打印格式

- 在操作数栈状态打印时,增加空行以提高可读性
This commit is contained in:
Luke 2025-07-21 17:10:20 +08:00
parent 6a339149f1
commit 8eeed6f6b9

View File

@ -84,7 +84,7 @@ public class OperandStack {
* </p> * </p>
*/ */
public void printOperandStack() { public void printOperandStack() {
LoggingUtils.logInfo("Operand Stack state:", stack + "\n"); LoggingUtils.logInfo("\n\nOperand Stack state:", stack + "\n");
} }
/** /**