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.

21 lines
524 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* 控制台日志记录器实现Logger接口
*/
package com.orderprocessing;
import java.text.SimpleDateFormat;
import java.util.Date;
public class ConsoleLogger implements Logger {
private SimpleDateFormat dateFormat;
public ConsoleLogger() {
dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
}
@Override
public void log(String message) {
String timestamp = dateFormat.format(new Date());
System.out.println("[" + timestamp + "] " + message);
}
}