I prefer to switch slf4j instead of an own xwork logging facade.

Regards

Johannes

#################################################
web: http://www.jgeppert.com
twitter: http://twitter.com/jogep



2014-05-10 9:43 GMT+02:00 Lukasz Lenart <lukaszlen...@apache.org>:

> Hi,
>
> What do you think about that idea [1]?
>
> Basically instead of doing this:
>
> if (LOG.isDebugEnable()) {
>      LOG.debug("Action name is [#0]', actionName);
> }
>
> it will be possible to do this:
>
> LOG.debug("Action name is [#0]', actionName);
>
> with implementation in eg. JdkLogger like this:
>
> public void debug(String message, String... params) {
>     if(isDebugEnable()) {
>          // perform logging
>     }
> }
>
> wiht assumption that we always use version with params and don't use
> string concatenation
>
> [1] https://issues.apache.org/jira/browse/WW-4344
>
>
> Regards
> --
> Ɓukasz
> + 48 606 323 122 http://www.lenart.org.pl/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
> For additional commands, e-mail: dev-h...@struts.apache.org
>
>

Reply via email to