|
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?
|