You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
224 B

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