I want to logging to file and set it in properties file, because default logger.info() output goes to console and in web application there is no console in my case.

link|improve this question

50% accept rate
feedback

2 Answers

you should put in src/main/resources

link|improve this answer
This is the correct answer to the question and I've up-voted it as such. However, is it a good practice to include properties files like this in the .jar/.war/.ear/etc... for an application? Shouldn't the application provide a sample configuration (or at most a default one) and allow the installer to configure the logging on their system however they like? I realize this is an open ended question, so what's the accepted best practice? (assuming there is one) – Chris Nava Jan 17 '11 at 16:04
and where and what should I place instead of this: java -Djava.util.logging.config.file=mylogging.properties ? in tomcat 6 – hello_world Jan 17 '11 at 16:37
I see that by default (no own logging.properties) tomcat6 send default java.util.logging log.info() to file /var/log/tomcat6/catalina-(date)-.log This must be enough for me now, later I'll read this tomcat.apache.org/tomcat-6.0-doc/… – hello_world Jan 17 '11 at 17:11
feedback

If you are using Tomcat, then you should log to $CATALINA_HOME/logs/myapp/myapp.log.

link|improve this answer
That doesn't answer the question. – The Elite Gentleman Jan 17 '11 at 15:27
@the-elite-gentleman I'll let the OP be the judge of that. As far as I can tell, the OP wants to know where to log to, since he can't log to console in a webapp. I will happily delete/edit if I misunderstood the question. – dogbane Jan 17 '11 at 15:32
feedback

Your Answer

 
or
required, but never shown

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