On 05/30/2012 04:14 AM, Jacopo Cappellato wrote:
> Would you agree in adopting the following as a best practice for OFBiz 
> logging: do not include full maps/lists in the output or if really necessary 
> limit this to verbose output.
> 
> For example, avoid code like this:
> 
>         Debug.logInfo("Capture [" + serviceName + "] : " + captureContext, 
> module);

Debug.logInfo("Capture [%s] : %s", module, serviceName, captureContext);

ps: this has been supported for a while now.

Reply via email to