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
notice and similar functions generate interleaved output when used concurrently.
notice
This is due to the use of hPutStrLn.
hPutStrLn
It makes writing Cabal hooks that do things in parallel a pain.
It also makes straceing cabal very annoying because it pollutes the outuput.
strace
As a solution, we should use something like say, that prints the entire contents in one go and ensures no interleaved output.
say
The text was updated successfully, but these errors were encountered:
Sounds reasonable.
Sorry, something went wrong.
No branches or pull requests
notice
and similar functions generate interleaved output when used concurrently.This is due to the use of
hPutStrLn
.It makes writing Cabal hooks that do things in parallel a pain.
It also makes
strace
ing cabal very annoying because it pollutes the outuput.As a solution, we should use something like
say
, that prints the entire contents in one go and ensures no interleaved output.The text was updated successfully, but these errors were encountered: