I went through how SLF4J is implemented and they did exactly what I want to do :-)
I need some regex Ninja to remove if statement around LOG's calls Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2014-05-12 13:17 GMT+02:00 Dave Newton <[email protected]>: > I think the issue is only when the params are more than just strings, e.g., > "long"-running methods. > > I'd like to ditch the XW facade, though; I think whenever possible we > should strip out XW/S2 functionality when it exists in libraries we already > use (like those older XW string utils). > > d. > > > On Sun, May 11, 2014 at 4:13 PM, Johannes Geppert <[email protected]> wrote: > >> 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 <[email protected]>: >> >> > 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: [email protected] >> > For additional commands, e-mail: [email protected] >> > >> > >> > > > > -- > e: [email protected] > m: 908-380-8699 > s: davelnewton_skype > t: @dave_newton <https://twitter.com/dave_newton> > b: Bucky Bits <http://buckybits.blogspot.com/> > g: davelnewton <https://github.com/davelnewton> > so: Dave Newton <http://stackoverflow.com/users/438992/dave-newton> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
