/**
* 日志接口,定义日志记录的基本方法
*/
package com.orderprocessing;
public interface Logger {
* 记录日志信息
* @param message 日志消息
void log(String message);
}