Those line characters are not ASCII. They are part of some other
encodings, including unicode. Those odd characters are suggestive of an
encoding mixup, though I'm not sure how you'd manage to get one in this
context (perhaps via your logger setup?). The alternating characters
suggest something like the attempt to interpret the bytes of a
multi-byte UTF-8 character as multiple characters.
The other thing that can cause this sort of thing to happen is if the
particular font used does not support the particular characters used
(few fonts support the entire unicode set). If the font you used in the
editor supported these characters but the font used in the output window
did not, it might cause odd looking output, but more commonly some block
characters rather than the odd pattern you have here. You can
right-click on the output window and choose "Settings..." to what font
it's using.
On 5/1/23 11:46, Geert Vancompernolle wrote:
I have the following line in my Java application:
mLogger.info("╔════════════════════════════════════════════════════════════════════════════════╗");
but I see this in the debug console of NB17:
01-05-2023 17:43:22 INFO HomeControl -
╔��������������������������������������������������������������������������������╗
How can I get the correct ascii characters in NB17? Previous versions
of NB (e.g. NB12.5) showed this correctly