Hi I currently have this in my .properties file:

java.util.logging.FileHandler.pattern = %h/programName%u%g.log

I would also like to append a timestamp / username to this so its easy to identify log files does anyone know how?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Since the FileHandler methods don't have a % substitution variable for date, my suggestion would be to format a string that includes the date before passing the string to FileHandler. Something like:

String pattern = String.format("%%h/programName%tYmd%%u%%g.log", today);
FileHandler fh = new FileHandler(pattern);
link|improve this answer
can this be done from within a .properties file? – Aly Dec 7 '09 at 16:57
Ah, I missed the properties file part. That will require a little more thinking. – shoover Dec 7 '09 at 18:07
Do you have access to programmatically write to the .properties file on program startup? And is this a program that executes and quits, or something that stays loaded (possibly overnight)? – shoover Dec 7 '09 at 18:07
feedback

Your Answer

 
or
required, but never shown

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