Hi, java naming conventions say that constants should be in upper case. In our company I saw declaration of log4j: private static final Logger log = Logger.getLogger(...); So I was wondering why it's not 'LOG'. After some search there were two groups of people, one that uses 'LOG' and the other one that uese 'log'. The argument for using 'log' was ...