-
I'm using Mustang-CLI-2.11.0 on the command-line to validate ZUGFeRD PDF or EN16931 XML files. Besides from a bug in VeraPDF regarding fonts, this works well, but I have doubts regarding the output. It is full of irrelevant messages regarding the Part of the ouput is plain text, part is XML, as it seems. Mustang writes messages to a file Is it possible to write all the relevant messages only in a human-readable format into a file specified on the command line? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, that would be kind regards |
Beta Was this translation helpful? Give feedback.
Hi,
that would be
--disable-file-logging
. I'm not sure if that also disables the console output but that output is for sure on stderr, so it can be redirected likejava -jar mustang.jar -Xmx1G --action validate --source xyz.pdf --disable-file-logging --no-notices 2>/dev/null
. There is a corresponding call for windows where I recommend to also set-Dfile.encoding
to UTF-8.kind regards
Jochen