Skip to content

Commit

Permalink
fix(#2938): debug
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Mar 15, 2024
1 parent 92e41cb commit c8d5a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eo-maven-plugin/src/main/java/org/eolang/maven/PhiMojo.java
Expand Up @@ -128,7 +128,7 @@ public void exec() {
try {
home.save(PhiMojo.translated(train, xml), relative);
} catch (final ImpossibleToPhiTranslationException exception) {
Logger.info(
Logger.debug(
this,
"XML is not translatable to phi:\n%s",
xml.toString()
Expand Down Expand Up @@ -175,7 +175,7 @@ private static String translated(final Train<Shift> train, final XML xmir) throw
final XML translated = new Xsline(
train.with(new StClasspath("/org/eolang/maven/phi/to-phi.xsl"))
).pass(xmir);
Logger.info(PhiMojo.class, "XML after translation to phi:\n%s", translated);
Logger.debug(PhiMojo.class, "XML after translation to phi:\n%s", translated);
final List<String> phi = translated.xpath("phi/text()");
if (phi.isEmpty()) {
throw new ImpossibleToPhiTranslationException(
Expand Down

0 comments on commit c8d5a6d

Please sign in to comment.