By default, hbm2ddl spits a ton of output to the console when executing the ant task. I'd like to turn this completely off and simply look at the schema file if something has gone wrong. Anyone know how to do that?
feedback
|
|
Hibernate (at least the current version) uses SLF4J for logging. Use the SLF4J NOP to silently discarding all logging. Alternatively you could configure a low level verbosity for your logging framework (e.g. log4j). A sample log4j.properties:
| |||||
feedback
|
|
There is undocumented property which should be defined in task:
For me it works! | |||
|
feedback
|