[rfc][icedtea-web] refactored logging
Omair Majid
omajid at redhat.com
Tue Oct 22 07:06:23 PDT 2013
* Jiri Vanek <jvanek at redhat.com> [2013-10-22 09:58]:
> On 10/22/2013 03:42 PM, Omair Majid wrote:
> >+ /** For testing only: throw away the previous config */
> >+ static void resetLogConfig() {
> >+ if (logConfig != null) {
> >+ logConfig = new LogConfig();
> >+ }
> >+ }
> >+
> > public String getIcedteaLogDir() {
> > return icedteaLogDir;
>
> Well, much better :) But, isn't set/get much more common?
It probably is. But I don't think it makes sense here. We don't want to
allow general code to set a new LogConfig, do we? It's only for tests.
And when I look at the tests, the only thing they care about is
resetting it to the default value.
Do you expect any code to ever subclass a LogConfig and use that?
setLogConfig may be worth having in that case. Otherwise, you can just
call set* on individual settings of a LogConfig.
> Again, do as you wish :) I'm ok with all three variants.
Okay, I will push this patch shortly (unless you (or anyone else) have
any concerns).
Cheers,
Omair
More information about the distro-pkg-dev
mailing list