Currently I am using using Java util for logging logs into the file which can be configured from java.util.logging.FileHandler.pattern. I want to append a timestamp in the log file name. I also have to take the log file path from java.util.logging.FileHandler.pattern property.

link|improve this question
I hope you're using slf4j as a logging facade? – Oleg Mikheev Nov 16 '11 at 10:56
Use log4j :) and few more chars to satisfy minimum. – Dolphin Nov 16 '11 at 11:52
feedback

4 Answers

may this example will helps you.

String timeStamp = new SimpleDateFormat().format( new Date() );
FileHandler fh = new FileHandler("./jay_log_%u.%g_" +timeStamp +".log", 30000,4);  
logger.addHandler(fh);
link|improve this answer
feedback
public static String currentTimestamp() {
    Calendar c = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
    DateFormat f = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
    return f.format(c.getTime());
}

this gives you back a timestamp

link|improve this answer
feedback

Have a look at this post, explain logging in details.

You can use %t for time in your config file.

link|improve this answer
1  
Link no longer exists. java.util.logging.FileHandler does not support %t – Stephen May 3 at 13:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.