* minor, increase log level to warning from info if failed to create log file.

This commit is contained in:
Heng Sin Low 2007-07-08 09:21:54 +00:00
parent 630b94fd12
commit f10b727f3d
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class PackInHandler extends DefaultHandler {
try {
fw_document = new FileOutputStream (file_document, false);
} catch (FileNotFoundException e1) {
log.info ("startElement:"+e1);
log.warning ("Failed to create log file:"+e1);
}
streamResult_document = new StreamResult(fw_document);
tf_document = (SAXTransformerFactory) SAXTransformerFactory.newInstance();