Skip to content

Commit

Permalink
#193 trace
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 23, 2022
1 parent 6d74bd1 commit 9717e31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/jcabi/xml/DomParser.java
Expand Up @@ -126,8 +126,8 @@ public Document document() {
ex
);
}
if (Logger.isDebugEnabled(this)) {
Logger.debug(
if (Logger.isTraceEnabled(this)) {
Logger.trace(
this,
"%s parsed %d bytes of XML in %[nano]s",
builder.getClass().getName(),
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/jcabi/xml/XSLDocument.java
Expand Up @@ -466,8 +466,8 @@ private void transformInto(final XML xml, final Result result) {
ex
);
}
if (Logger.isDebugEnabled(this)) {
Logger.debug(
if (Logger.isTraceEnabled(this)) {
Logger.trace(
this,
"%s transformed XML in %[nano]s",
trans.getClass().getName(),
Expand Down

0 comments on commit 9717e31

Please sign in to comment.