[Minor] set some loggers to debug

This commit is contained in:
Robert von Burg 2013-12-24 02:42:49 +01:00
parent 24a62bb01d
commit d35baa5a48
2 changed files with 21 additions and 11 deletions

View File

@ -95,8 +95,10 @@ public class FileIo {
throw new XmlException(msg, e);
}
String msg = "Wrote SAX to {0}"; //$NON-NLS-1$
logger.info(MessageFormat.format(msg, this.path.getAbsolutePath()));
if (logger.isDebugEnabled()) {
String msg = "Wrote SAX to {0}"; //$NON-NLS-1$
logger.info(MessageFormat.format(msg, this.path.getAbsolutePath()));
}
}
public <T> void readSax(PersistenceContext<T> ctx) {
@ -110,8 +112,10 @@ public class FileIo {
DefaultHandler defaultHandler = saxParser.getDefaultHandler();
sp.parse(this.path, defaultHandler);
String msg = "SAX parsed file {0}"; //$NON-NLS-1$
logger.info(MessageFormat.format(msg, this.path.getAbsolutePath()));
if (logger.isDebugEnabled()) {
String msg = "SAX parsed file {0}"; //$NON-NLS-1$
logger.info(MessageFormat.format(msg, this.path.getAbsolutePath()));
}
ctx.setObject(saxParser.getObject());
@ -157,8 +161,10 @@ public class FileIo {
Source xmlSource = new DOMSource(document);
transformer.transform(xmlSource, result);
String msg = MessageFormat.format("Wrote DOM to {0}", this.path.getAbsolutePath()); //$NON-NLS-1$
logger.info(msg);
if (logger.isDebugEnabled()) {
String msg = MessageFormat.format("Wrote DOM to {0}", this.path.getAbsolutePath()); //$NON-NLS-1$
logger.info(msg);
}
} catch (TransformerFactoryConfigurationError | TransformerException e) {
@ -183,9 +189,11 @@ public class FileIo {
DomParser<T> domParser = ctx.getParserFactor().getDomParser();
domParser.fromDom(document);
String msg = "DOM parsed file {0}"; //$NON-NLS-1$
msg = MessageFormat.format(msg, this.path.getAbsolutePath());
logger.info(msg);
if (logger.isDebugEnabled()) {
String msg = "DOM parsed file {0}"; //$NON-NLS-1$
msg = MessageFormat.format(msg, this.path.getAbsolutePath());
logger.info(msg);
}
ctx.setObject(domParser.getObject());

View File

@ -51,7 +51,8 @@ public class LockableObject {
msg = MessageFormat.format(msg, StringHelper.formatMillisecondsDuration(tryLockTime), this.toString());
throw new XmlPersistenceException(msg);
}
logger.info("locked " + this.toString()); //$NON-NLS-1$
if (logger.isDebugEnabled())
logger.debug("locked " + this.toString()); //$NON-NLS-1$
} catch (InterruptedException e) {
throw new XmlPersistenceException("Thread interrupted: " + e.getMessage(), e); //$NON-NLS-1$
}
@ -62,6 +63,7 @@ public class LockableObject {
*/
public void unlock() {
this.lock.unlock();
logger.info("unlocking " + this.toString()); //$NON-NLS-1$
if (logger.isDebugEnabled())
logger.debug("unlocking " + this.toString()); //$NON-NLS-1$
}
}