| Author |
How to set text format in log file
|
David Chen
Ranch Hand
Joined: Jan 06, 2002
Posts: 57
|
|
Hi, There: I'm using java.util.logging api. How can I define my own text format (instead of using SimpleFormatter) in log file? Does anyone have some sample codes for that please? Thanks in advance David
|
 |
David Chen
Ranch Hand
Joined: Jan 06, 2002
Posts: 57
|
|
here is an option to extend SimpleFormatter like: class MyFormatter extends SimpleFormatter{ public String format(LogRecord record){ return (record.getMessage()+"\r\n"); } }
|
 |
Marilyn de Queiroz
Sheriff
Joined: Jul 22, 2000
Posts: 9033
|
|
|
See the java.text.MessageFormat class. It was written for this purpose.
|
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
|
 |
 |
|
|
subject: How to set text format in log file
|
|
|