summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-29 17:16:50 (GMT)
committerGitHub <noreply@github.com>2021-04-29 17:16:50 (GMT)
commitc6d77227efaf332a5d24bc12d32f4b1fec6b13b9 (patch)
tree426ce6b976c194ccabd5ca5bb499325a1044eaee /doc
parent9134b15e46bcc6f8323aa6b24546a17e11f950bf (diff)
parentd5578494bfc9342ae83b544a5200aa630ec0b2eb (diff)
downloadDoxygen-c6d77227efaf332a5d24bc12d32f4b1fec6b13b9.zip
Doxygen-c6d77227efaf332a5d24bc12d32f4b1fec6b13b9.tar.gz
Doxygen-c6d77227efaf332a5d24bc12d32f4b1fec6b13b9.tar.bz2
Merge pull request #8332 from albert-github/feature/issue_8329
issue #8329 Force line buffering
Diffstat (limited to 'doc')
-rw-r--r--doc/faq.doc8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/faq.doc b/doc/faq.doc
index 23c523b..16765ce 100644
--- a/doc/faq.doc
+++ b/doc/faq.doc
@@ -304,6 +304,14 @@ Doc++ but that just wasn't good enough (it didn't support signals and
slots and did not have the Qt look and feel I had grown to like),
so I started to write my own tool...
+\section faq_bin How to prevent interleaved output
+
+When redirecting all the console output of doxygen, i.e. messages and warnings, this can be interleaved or
+in a non-expected order.
+The, technical, reason for this is that the `stdout` can be buffered.
+It is possible to overcome this by means of the `-b` of doxygen, like e.g `doxygen -b > out.txt 2>&1`.
+Note this might cost a little more time though.
+
\htmlonly
Go to the <a href="trouble.html">next</a> section or return to the
<a href="index.html">index</a>.