Hi,<br><br>I have a quick question on Logging:<br><br>CWLogging have INFO as the default level, but none of my log.info() were getting printed.<br><br>Logger.java infact have methods that seem to shift the log levels. For
e.g. the warn method infact logs it as INFO. What is the reason for this logic?<br> public void warn(String message)<br> {<br> doLogging(Level.INFO, message, null);<br> }<br><br>Regards,<br>Sijo