We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Summary Debug string is not displayed in console if start with more than 14 hyphens. Same behavior if final '\n' character is missing.
number of hyphens is matter - threshold is 14: #declare s_ = "--------------"; // This works #declare s_ = "---------------"; // This not
POV-Ray Version
Runtime Environment
Steps to Reproduce
Expected Behavior
Debug string should be displayed
Actual Behavior
Debug string missed in console output
Workaround Reduce number of leadinh hyphens
The text was updated successfully, but these errors were encountered:
FWIW. I'm not seeing the issue on my Ubuntu 22.04 linux machine with the v3.8 based compiled versions I have in hand.
I don't use Windows so I'm unable to try the posted code in that environment.
Sorry, something went wrong.
If I recall correctly from my Windows days, 15 or more hyphens in a row creates a horizontal rule. Do you observe this behavior?
No branches or pull requests
Summary
Debug string is not displayed in console if start with more than 14 hyphens. Same behavior if final '\n' character is missing.
Example:
#declare s_ = "----------------- DEBUG -----------------------------"; // String is not displayed in console
#debug concat(s_, "\n")
number of hyphens is matter - threshold is 14:
#declare s_ = "--------------"; // This works
#declare s_ = "---------------"; // This not
POV-Ray Version
Runtime Environment
Steps to Reproduce
Expected Behavior
Debug string should be displayed
Actual Behavior
Debug string missed in console output
Workaround
Reduce number of leadinh hyphens
The text was updated successfully, but these errors were encountered: