关于xceptionUtils.getStackTrace(e)的疑问

看到生产上的代码片段:

			try {
				Thread.sleep(10);
				XXXX
			} catch (InterruptedException e) {
				LogCore.core.error(ExceptionUtils.getStackTrace(e));
			}

心生疑窦:

为什么不直接用

			try {
				Thread.sleep(10);
				node.pulse();
			} catch (InterruptedException e) {
				LogCore.core.error("",e);
			}

或者是

			try {
				Thread.sleep(10);
				node.pulse();
			} catch (InterruptedException e) {
				LogCore.core.error(e.toString());
			}

你可能感兴趣的:(关于xceptionUtils.getStackTrace(e)的疑问)