Closed GoogleCodeExporter closed 9 years ago
According to the guidelines, uppercase field names are meant for constants. Not
all static final fields are constants though. Constants should be immutable.
Loggers are not immutable. One of the reasons they are not is the fact that the
current level can be changed during the lifetime and that that is observable
from the program. That's the reason why we chose to make is a lowercase field.
Original comment by r.spilker
on 30 Oct 2012 at 11:18
Makes sense, thanks for the feedback.
Original comment by deri...@gmail.com
on 31 Oct 2012 at 12:52
However to note, the reference is final/constant even though the object is not
immutable. My 2 cents.
Original comment by deri...@gmail.com
on 31 Oct 2012 at 12:54
Original issue reported on code.google.com by
deri...@gmail.com
on 30 Oct 2012 at 6:13