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
Describe the bug The Messenger::error function does not correctly parse and print multiline messages. For example:
Messenger::error
Messenger::error("This is part 1.\nAnd this is part 2.");
Only "This is part 1." is printed:
*** ERROR *** ERROR This is part 1. *** ERROR
The text was updated successfully, but these errors were encountered:
After a bit of testing, we do mostly print multi-line messages correctly. It is only the last line which is skipped.
Sorry, something went wrong.
fix: include final line of multi-line error messages (#1822)
93d16e8
fix: include final line of multi-line error messages (#1822) (#1823)
bcf6e07
dbdcb95
rprospero
trisyoungs
Successfully merging a pull request may close this issue.
Describe the bug
The
Messenger::error
function does not correctly parse and print multiline messages. For example:Only "This is part 1." is printed:
The text was updated successfully, but these errors were encountered: