Skip to content

Commit

Permalink
Verbetering weergave CHAIN mode: relatieve paden
Browse files Browse the repository at this point in the history
Alleen relevant voor ontwikkelaars.

Paden verkort in debugmode=CHAIN
  • Loading branch information
arjan authored and arjan committed Oct 28, 2024
1 parent 79d1c92 commit 267f7d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/nl/imvertor/common/Transformer.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public boolean transform(File infile, File outfile, File xslfile, String alias)

String task = "Transforming";

configurator.getRunner().debug(logger,"CHAIN",task + " " + infile.getCanonicalPath() + " using " + xslfile.getName());
configurator.getRunner().debug(logger,"CHAIN",task + " " + (new AnyFile(infile)).getRelativePath(configurator.getWorkFolder()) + " using " + (new AnyFile(xslfile)).getRelativePath(configurator.getBaseFolder()));

stylesheetIdentifier = Configurator.getStylesheetIdentifier(xslfile);

Expand Down

0 comments on commit 267f7d6

Please sign in to comment.