1234567891011121314151617181920212223242526272829303132 |
- package net.sf.l2j;
- import java.util.logging.Formatter;
- import java.util.logging.LogRecord;
- public class GMAuditFormatter extends Formatter {
- @Override
- public String format(LogRecord record) {
- return record.getMessage()+"\r\n";
- }
- }
|