Package be.gaudry.debug
package be.gaudry.debug
Provides the classes necessary to use logging or to display some information to the user
about what and how the application has done.
\n\nAs there are many logging implementations, and using a Broldev dependency cannot
impose the use of a particular one on the overall application that the library is a
part of, the Broldev methods never use an explicit logger, or use
System.out
or
System.err
(except a few debug methods that must be explicitly called;
and in these cases the output is declared into the javadoc method comment).
\nApache Commons provides the LogFactory
to allow logging without attempting to initialize or terminate the underlying logging
implementation that is used at runtime; that is the responsibility of the application.
However many popular logging implementations do automatically initialise themselves;
in this case an application may be able to avoid containing any code that is specific
to the logging implementation used.-
ClassDescriptionHelps to show some informations on a console.The DAODebug class allows to log or debug some operations performed by the persistent layer.