On Jan 15, 2009, at 4:10 PM, Vincent Siveton wrote:
Hi Paul,
2009/1/15, [email protected] <[email protected]>:
Author: lindner
Date: Thu Jan 15 05:29:29 2009
New Revision: 734699
[SNIP]
- LOG.finest(file.getAbsolutePath() + " doesn't seem to
be a JS or JSON file.");
+ if (LOG.isLoggable(Level.FINEST))
LOG.finest(file.getAbsolutePath() + " doesn't seem to be a JS or
JSON file.");
Find and replace doesn't apply our code style :)
Not sure what you mean about this..
To insure that java doesn't evaluate the arguments you have to wrap
the statement with lots of if-guards as above..