You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ofbiz.apache.org by Chris Howe <cj...@yahoo.com> on 2006/11/28 11:19:24 UTC

Model log4j logger

Is there any interest in adding an additional logger
for level="model" where instead of using comments <!--
--> or // We use this logger to record what a chunk of
code is about to do.

example:

OrderServices.java:955
       // store the OrderTerm entities

change to
       Debug.logModel("store the OrderTerm
entities",module);

If a new logger only logged the model tag, this might
allow for the creation of process
exploration/documentation.  For example, what happens
when I perform this service.  What do you guys think?