You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-user@db.apache.org by Lance Eason <la...@whisperwire.com> on 2003/09/04 22:09:57 UTC

OJBDoclet debug messages

We're using OJBDoclet to generate our mappings, which is awesome.  The problem is it's spitting out (literally) a 100,000+ debug messages to the console as it does it's thing:

 

[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - prefix=OjbTorque
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - tagHandler=xdoclet.modules.ojb.Torqu eTagsHandler@13a53d <ma...@13a53d> 
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - prefix=OjbTorque
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - tagHandler=xdoclet.modules.ojb.Torqu eTagsHandler@13a53d <ma...@13a53d> 
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - prefix=OjbTorque
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - tagHandler=xdoclet.modules.ojb.Torqu eTagsHandler@13a53d <ma...@13a53d> 
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - prefix=OjbTorque
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - tagHandler=xdoclet.modules.ojb.Torqu eTagsHandler@13a53d <ma...@13a53d> 
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - prefix=OjbTorque
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - tagHandler=xdoclet.modules.ojb.Torqu eTagsHandler@13a53d <ma...@13a53d> 
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - prefix=OjbTorque
[ojbdoclet] 131479 [main] DEBUG xdoclet.template.TemplateEngine.getTagHandlerFor  - tagHandler=xdoclet.modules.ojb.Torqu eTagsHandler@13a53d <ma...@13a53d> 

 

Could somebody tell me how to shut those off?

 

Our task:

           <taskdef name="ojbdoclet" classname="xdoclet.modules.ojb.OjbDocletTask" classpathref="xdoclet-classpath" />

            <ojbdoclet destdir="${_ww_schema}" verbose="no" >

                  <fileset refid="xdoc.source.path" />

                  <fileset refid="xdoc.test.source.path" />

                  <ojbrepository destinationFile="repository_${_ww_current-module}.xml"/>

                  <torqueschema databaseName="test" destinationFile="${_ww_current-module}_schema.xml"/>

            </ojbdoclet>

Re: OJBDoclet debug messages

Posted by Thomas Dudziak <to...@first.gmd.de>.
It seems that you run xdoclet in debug mode as the messages you see are
from xdoclet itself (to be more precise, they are debug logging messages 
from the template engine). The only explanation that I have is that you
have logging properties (commons logging or log4j) that specify the
default log level as DEBUG, and these are then also used by xdoclet.

Tom


---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-user-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-user-help@db.apache.org