Regular |
|
Joined: Wed Dec 31, 2003 4:26 am Posts: 108 Location: Berkeley, CA
|
Probably a couple of things you want to do.
In the hibernate.cfg.xml file (or the hibernate.properties) file, turn of sql output.
In log4j.properties, set logging to "warn" or even "error" for the offending packages/classes.
In tomcat you can configure a logger for context.
Finally, you can redirect output and tell tomcat to put stdout to /dev/null -- while effective, this is generally not recommended.
Logging to stdout should have no impact on java VM memory consumption.
|
|