<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output]]></title><description><![CDATA[<h3>Env</h3>
<p dir="auto">arch linux<br />
KDE Plasma 6.5.3<br />
Qt Creator 18.0.0<br />
Qt 6.10.1</p>
<h3>Problem</h3>
<p dir="auto">Running in debug mode, qDebug() doesn't show messages in Qt Creator/Application Output, but when running in a terminal manually, it shows.</p>
<h3>Codes</h3>
<pre><code class="language-cpp">#include &lt;QDebug&gt;

int main()
{
    qDebug() &lt;&lt; "Test123";
    qDebug() &lt;&lt; "Test456";
    
    return 0;
}
</code></pre>
]]></description><link>https://forum.qt.io/topic/163812/qdebug-doesn-t-show-messages-in-qt-creator-application-output</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 09:33:12 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/163812.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 27 Nov 2025 12:45:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Fri, 28 Nov 2025 19:23:30 GMT]]></title><description><![CDATA[<p dir="auto">It works after adding <code>QT_ASSUME_STDERR_HAS_CONSOLE=1</code> in "Projects/Run Settings/Environment".<br />
But I don't know why.</p>
]]></description><link>https://forum.qt.io/post/834092</link><guid isPermaLink="true">https://forum.qt.io/post/834092</guid><dc:creator><![CDATA[jronald]]></dc:creator><pubDate>Fri, 28 Nov 2025 19:23:30 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Mon, 23 Feb 2026 20:22:46 GMT]]></title><description><![CDATA[<p dir="auto">This topic was also present as a bug report at <a href="https://qt-project.atlassian.net/browse/QTCREATORBUG-33741" target="_blank" rel="noopener noreferrer nofollow ugc">https://qt-project.atlassian.net/browse/QTCREATORBUG-33741</a></p>
<p dir="auto">Which I've fixed, and with Qt Creator 19 things would simply just work out of the box with <code>lldb.exe</code>.</p>
]]></description><link>https://forum.qt.io/post/836514</link><guid isPermaLink="true">https://forum.qt.io/post/836514</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Mon, 23 Feb 2026 20:22:46 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 18:59:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cristian-adam">@<bdi>cristian-adam</bdi></a><br />
Very interesting, thank you.  It turns out there is some <code>vsdbg.exe</code>, which I take to be the actual debugger as its own executable.  Which you can "drive", if you know what to send it.</p>
<p dir="auto">I didn't care about DWARF, PDB etc.  I was interested in which debuggers allow a host to "talk" to them and vice versa, send it commands, read variables, etc.  Which is what <strong>Creator</strong> will require.  I know <code>gdb</code> can do it.  I didn't know there was a standalone executable for the debugger from VS, I thought it was a built in.</p>
]]></description><link>https://forum.qt.io/post/834535</link><guid isPermaLink="true">https://forum.qt.io/post/834535</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Thu, 11 Dec 2025 18:59:17 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 15:38:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jonb">@<bdi>JonB</bdi></a> said in <a href="/post/834526">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto">So while they made MSVC compiler and link external tools they did not expose an "interface" to the debugger part? But gdb does allow external "driving"? Of course for me using the MS stuff all inside VS I didn't worry too much about what was what.</p>
</blockquote>
<p dir="auto">Yes. The premium debugging experience is reserved for Microsoft products, or, if you want to be a hacker, and break their EULA <a href="https://github.com/mfussenegger/nvim-dap/discussions/869" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/mfussenegger/nvim-dap/discussions/869</a></p>
<p dir="auto">I think CLion has their own version of <code>lldb</code> in which they optimized some things.</p>
<p dir="auto"><code>gdb</code> on Windows can only debug DWARF, cannot do PDB.</p>
]]></description><link>https://forum.qt.io/post/834527</link><guid isPermaLink="true">https://forum.qt.io/post/834527</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Thu, 11 Dec 2025 15:38:25 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 15:31:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cristian-adam">@<bdi>cristian-adam</bdi></a> said in <a href="/post/834522">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto">Yes. On Windows the proper debugger can only be used by Microsoft products, either Visual Studio or Visual Studio Code.</p>
</blockquote>
<p dir="auto">So, to be 100% clear: the debugger I used for MSVC code from within VS is integrated with/cannot be separated from VS?  It is not <strong>cdb</strong> (nor <strong>lldb</strong>), it is not a "standalone" debugger, it <em>must</em> be used from some visual VS thingie?  So while they made MSVC compiler and <strong>link</strong> external tools they did not expose an "interface" to the debugger part?  But <strong>gdb</strong> does allow external "driving"?  Of course for me using the MS stuff all inside VS I didn't worry too much about what was what.</p>
]]></description><link>https://forum.qt.io/post/834526</link><guid isPermaLink="true">https://forum.qt.io/post/834526</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Thu, 11 Dec 2025 15:31:05 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 15:18:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jonb">@<bdi>JonB</bdi></a> said in <a href="/post/834521">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto">but you do not use whatever debugger MSVC/VS comes with, because that is for visual use in Visual Studio only? But Creator can "drive" some lldb debugger (or cdb) under Windows like it does on gdb from Linux, so you use one of those?</p>
</blockquote>
<p dir="auto">Yes. On Windows the proper debugger can only be used by Microsoft products, either Visual Studio or Visual Studio Code.</p>
<p dir="auto"><code>cdb</code> is their command line debugger, part of the Windows Driver SDK, and Qt Creator has a dll extension plugin which exposes a Python interface like for <code>gdb</code> and <code>lldb</code> on Linux / macOS.</p>
<p dir="auto">But, <code>lldb</code> knows how to use <code>pdb</code> debugger files, and can handle MSVC binaries.</p>
<p dir="auto">This makes <code>lldb</code> the one of the few <strong>open source debuggers</strong> on Windows that can handle MSVC compiled debug programs!</p>
]]></description><link>https://forum.qt.io/post/834522</link><guid isPermaLink="true">https://forum.qt.io/post/834522</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Thu, 11 Dec 2025 15:18:53 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 15:04:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cristian-adam">@<bdi>cristian-adam</bdi></a> said in <a href="/post/834519">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto">lldb shipped with Qt Creator can debug MSVC programs, since lldb upstream can do this.</p>
</blockquote>
<p dir="auto">As I have written, I am not a Windows/Qt user, but always interested to learn to help others in future.  When we used MSVC/VS years ago we used compiler/linker/debugger from that.  Are you saying that, if you choose to develop/debug in <strong>Creator</strong> rather than <strong>Visual Studio</strong>, you use the compiler/linker from MSVC  --- because these can be invoked via command line from <strong>Creator</strong>/<strong>make</strong> --- but you do not use whatever debugger MSVC/VS comes with, because that is for visual use in <strong>Visual Studio</strong> <em>only</em>?  But <strong>Creator</strong> can "drive" some <strong>lldb</strong> debugger (or <strong>cdb</strong>) under Windows like it does on <strong>gdb</strong> from Linux, so you use one of those?</p>
]]></description><link>https://forum.qt.io/post/834521</link><guid isPermaLink="true">https://forum.qt.io/post/834521</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Thu, 11 Dec 2025 15:04:16 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 14:40:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cristian-adam">@<bdi>cristian-adam</bdi></a> said in <a href="/post/834519">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a> For some reason you got <code>lldb</code> set as debugger.</p>
<p dir="auto"><code>lldb</code> shipped with Qt Creator can debug MSVC programs, since <code>lldb</code> upstream can do this.</p>
<p dir="auto"><code>lldb</code> can also do post mortem debugging by loading a minidump file, which Qt Creator with <code>cdb</code> cannot.  It also might be faster than <code>cdb</code>.</p>
<p dir="auto">In order to get the <code>qDebug()</code> calls printed, just make sure to:</p>
<ol>
<li>Make sure to have <em>Run in terminal</em> checked</li>
<li>Set the environment variable <code>QT_WIN_DEBUG_CONSOLE=attach</code></li>
</ol>
<p dir="auto">Then as seen in the picture below, things are just fine:</p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/e9bc6501-4698-4816-9263-721f53630d43.png" alt="qt-creator-18-windows-msvc-2022-arm64-lldb.png" class=" img-fluid img-markdown" /></p>
</blockquote>
<p dir="auto">Run in terminal now works, that is true! still strange that i'm not seeing this in application output though but anyhow this helps enough!</p>
]]></description><link>https://forum.qt.io/post/834520</link><guid isPermaLink="true">https://forum.qt.io/post/834520</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Thu, 11 Dec 2025 14:40:14 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 14:34:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a> For some reason you got <code>lldb</code> set as debugger.</p>
<p dir="auto"><code>lldb</code> shipped with Qt Creator can debug MSVC programs, since <code>lldb</code> upstream can do this.</p>
<p dir="auto"><code>lldb</code> can also do post mortem debugging by loading a minidump file, which Qt Creator with <code>cdb</code> cannot.  It also might be faster than <code>cdb</code>.</p>
<p dir="auto">In order to get the <code>qDebug()</code> calls printed, just make sure to:</p>
<ol>
<li>Make sure to have <em>Run in terminal</em> checked</li>
<li>Set the environment variable <code>QT_WIN_DEBUG_CONSOLE=attach</code></li>
</ol>
<p dir="auto">Then as seen in the picture below, things are just fine:</p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/e9bc6501-4698-4816-9263-721f53630d43.png" alt="qt-creator-18-windows-msvc-2022-arm64-lldb.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.qt.io/post/834519</link><guid isPermaLink="true">https://forum.qt.io/post/834519</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Thu, 11 Dec 2025 14:34:15 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 14:32:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jonb">@<bdi>JonB</bdi></a> said in <a href="/post/834516">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a><br />
As I wrote:: <strong>lldb</strong> is not normally a debugger you use with MSVC.  It shows as in your <code>Qt</code> installation area.  That probably comes from the <strong>MinGW</strong> you show you also have.</p>
<p dir="auto">Under Windows you have to choose between two possible toolchains.  The <strong>MinGW</strong> one (like <strong>gcc</strong> + <strong>gdb</strong> or <strong>lldb</strong>) or the <strong>MSVC</strong> one (MSVC compiler &amp; linker and Visual Studio and debugger).  I think you have a cross between the two.  If you wish to use the MSVC C/C++ compiler, as shown in your screenshot, you should not be using an external debugger, you should be using the one which is part of MSVC.  I do not know why you have <strong>lldb</strong> or what exactly you should do to correct it, but you should do whatever to sort it out.</p>
</blockquote>
<p dir="auto">You were completely right! I now installed windows debugger from the maintenance tool and that helped (a bit).</p>
<p dir="auto">I now do get output when using OutputDebugString(".."). But nothing yet when using qDebug() &lt;&lt; "...";</p>
<p dir="auto">I do get this error though:<br />
<em>onecore\windows\directx\database\helperlibrary\lib\perappusersettingsqueryimpl.cpp(159)\directxdatabasehelper.dll!00007FF96BB8FEED: (caller: 00007FF96BB8FD30) ReturnHr(5) tid(4b1c) 80070002 Het systeem kan het opgegeven bestand niet vinden.</em></p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/4889c060-f505-46da-ae44-799846515727.png" alt="0f5e95f4-95f5-4dbb-b2f9-bf9379f80a95-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">So getting there. So dumb of me to have the wrong debugger</p>
]]></description><link>https://forum.qt.io/post/834518</link><guid isPermaLink="true">https://forum.qt.io/post/834518</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Thu, 11 Dec 2025 14:32:29 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 13:53:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a><br />
As I wrote:: <strong>lldb</strong> is not normally a debugger you use with MSVC.  It shows as in your <code>Qt</code> installation area.  That probably comes from the <strong>MinGW</strong> you show you also have.</p>
<p dir="auto">Under Windows you have to choose between two possible toolchains.  The <strong>MinGW</strong> one (like <strong>gcc</strong> + <strong>gdb</strong> or <strong>lldb</strong>) or the <strong>MSVC</strong> one (MSVC compiler &amp; linker and Visual Studio and debugger).  I think you have a cross between the two.  If you wish to use the MSVC C/C++ compiler, as shown in your screenshot, you should not be using an external debugger, you should be using the one which is part of MSVC.  I do not know why you have <strong>lldb</strong> or what exactly you should do to correct it, but you should do whatever to sort it out.</p>
]]></description><link>https://forum.qt.io/post/834516</link><guid isPermaLink="true">https://forum.qt.io/post/834516</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Thu, 11 Dec 2025 13:53:07 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 13:09:36 GMT]]></title><description><![CDATA[<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/530dd705-3371-4c5c-99e1-910923a1944c.png" alt="image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/f34368a6-c24d-411c-bdf5-8f3ff7c7240f.png" alt="image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Maybe I have the wrong debugger?</p>
]]></description><link>https://forum.qt.io/post/834515</link><guid isPermaLink="true">https://forum.qt.io/post/834515</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Thu, 11 Dec 2025 13:09:36 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 12:40:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a> I've updated the screenshot to show the Debugger set for the Kit.</p>
]]></description><link>https://forum.qt.io/post/834513</link><guid isPermaLink="true">https://forum.qt.io/post/834513</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Thu, 11 Dec 2025 12:40:15 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 12:33:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cristian-adam">@<bdi>cristian-adam</bdi></a> thanks for testing, one slight difference is that i'm using 6.10.1</p>
<p dir="auto">I think i'll reinstall</p>
]]></description><link>https://forum.qt.io/post/834512</link><guid isPermaLink="true">https://forum.qt.io/post/834512</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Thu, 11 Dec 2025 12:33:47 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 12:39:43 GMT]]></title><description><![CDATA[<p dir="auto">I just tried adding a qDebug() entry  and ran the program under debugger on Windows with MSVC 2022. It all worked just fine. See below:</p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/0906df16-f5e6-403b-a5eb-b7eb659735ce.png" alt="qt-creator-18-windows-msvc-2022-arm64-debugging.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.qt.io/post/834511</link><guid isPermaLink="true">https://forum.qt.io/post/834511</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Thu, 11 Dec 2025 12:39:43 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 12:16:12 GMT]]></title><description><![CDATA[<p dir="auto">Since it's probably the lldb engine inside Qt Creator that misbehaves (the call is coming from inside the house):<br />
try disabling code models/debuggers etc. in your Qt Creator.</p>
]]></description><link>https://forum.qt.io/post/834510</link><guid isPermaLink="true">https://forum.qt.io/post/834510</guid><dc:creator><![CDATA[hskoglund]]></dc:creator><pubDate>Thu, 11 Dec 2025 12:16:12 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Thu, 11 Dec 2025 11:27:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jonb">@<bdi>JonB</bdi></a> said in <a href="/post/834475">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a><br />
Hmm, I don't know what that means/shows, never seen it.  Might be because you are running inside debugger/VS?  I don't use Windows/MSVC/VS so not sure what is going on....</p>
<p dir="auto">One thing: that message says error in <strong>LldbEngine</strong>.  Now, like I said I am not Windows/MSVC, but what is that doing here?  <em>So far as I know</em> <strong>lldb</strong> is to do with Linux, why is it appearing in your Windows setup?</p>
<blockquote>
<p dir="auto">LLDB is part of the LLVM framework, and was created to work alongside of clang++, which is the LLVM C++ compiler</p>
</blockquote>
</blockquote>
<p dir="auto">What would your suggestion be for things that I could try to test and repair?</p>
]]></description><link>https://forum.qt.io/post/834507</link><guid isPermaLink="true">https://forum.qt.io/post/834507</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Thu, 11 Dec 2025 11:27:30 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Wed, 10 Dec 2025 13:26:15 GMT]]></title><description><![CDATA[<p dir="auto">Yeah, maybe the lldb debugger is the culprit, i.e. the snatcher of the debug output</p>
]]></description><link>https://forum.qt.io/post/834486</link><guid isPermaLink="true">https://forum.qt.io/post/834486</guid><dc:creator><![CDATA[hskoglund]]></dc:creator><pubDate>Wed, 10 Dec 2025 13:26:15 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Wed, 10 Dec 2025 09:41:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a><br />
Hmm, I don't know what that means/shows, never seen it.  Might be because you are running inside debugger/VS?  I don't use Windows/MSVC/VS so not sure what is going on....</p>
<p dir="auto">One thing: that message says error in <strong>LldbEngine</strong>.  Now, like I said I am not Windows/MSVC, but what is that doing here?  <em>So far as I know</em> <strong>lldb</strong> is to do with Linux, why is it appearing in your Windows setup?</p>
<blockquote>
<p dir="auto">LLDB is part of the LLVM framework, and was created to work alongside of clang++, which is the LLVM C++ compiler</p>
</blockquote>
]]></description><link>https://forum.qt.io/post/834475</link><guid isPermaLink="true">https://forum.qt.io/post/834475</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Wed, 10 Dec 2025 09:41:07 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Wed, 10 Dec 2025 08:54:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hskoglund">@<bdi>hskoglund</bdi></a> said in <a href="/post/834460">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto">If you try the same Windows API call that Qt uses; add<br />
<code>#include "windows.h"</code><br />
and<br />
<code> OutputDebugString(L"Hello there");</code><br />
does that text show up in the Appliction Output?</p>
</blockquote>
<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/hskoglund">@<bdi>hskoglund</bdi></a> , thanks once more for helping. Unfortunately, nope this doesn't show in the application output.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jonb">@<bdi>JonB</bdi></a> said in <a href="/post/834470">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a><br />
...And further to <a class="plugin-mentions-user plugin-mentions-a" href="/user/hskoglund">@<bdi>hskoglund</bdi></a>'s post --- which you should try --- I believe <a href="https://learn.microsoft.com/en-us/sysinternals/downloads/debugview" target="_blank" rel="noopener noreferrer nofollow ugc">DebugView</a> should still work these days(?), if you download that does your output appear inside it when you run it?  Not saying you will have to stick with that, just trying to track down where your messages are going....</p>
</blockquote>
<p dir="auto">Thanks to you as well. Tried this, the debug is not shown there either but I do get this:<br />
<img src="https://ddgobkiprc33d.cloudfront.net/3e744ade-f785-4767-9107-da85bd0e56c5.png" alt="19df4585-abfc-4712-9e2c-31bc4d9bb05e-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.qt.io/post/834474</link><guid isPermaLink="true">https://forum.qt.io/post/834474</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Wed, 10 Dec 2025 08:54:40 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Wed, 10 Dec 2025 07:55:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mhmart_asc">@<bdi>MHMart_asc</bdi></a><br />
...And further to <a class="plugin-mentions-user plugin-mentions-a" href="/user/hskoglund">@<bdi>hskoglund</bdi></a>'s post --- which you should try --- I believe <a href="https://learn.microsoft.com/en-us/sysinternals/downloads/debugview" target="_blank" rel="noopener noreferrer nofollow ugc">DebugView</a> should still work these days(?), if you download that does your output appear inside it when you run it?  Not saying you will have to stick with that, just trying to track down where your messages are going....</p>
]]></description><link>https://forum.qt.io/post/834470</link><guid isPermaLink="true">https://forum.qt.io/post/834470</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Wed, 10 Dec 2025 07:55:44 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Tue, 09 Dec 2025 22:49:00 GMT]]></title><description><![CDATA[<p dir="auto">If you try the same Windows API call that Qt uses; add<br />
<code>#include "windows.h"</code><br />
and<br />
<code> OutputDebugString(L"Hello there");</code><br />
does that text show up in the Appliction Output?</p>
]]></description><link>https://forum.qt.io/post/834460</link><guid isPermaLink="true">https://forum.qt.io/post/834460</guid><dc:creator><![CDATA[hskoglund]]></dc:creator><pubDate>Tue, 09 Dec 2025 22:49:00 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Tue, 09 Dec 2025 15:42:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hskoglund">@<bdi>hskoglund</bdi></a> said in <a href="/post/834450">qDebug() doesn't show messages in Qt Creator/Application Output</a>:</p>
<blockquote>
<p dir="auto">Just to be sure, could you rebuild Test3 in Release mode (instead of Debug mode) and check that there's no output</p>
</blockquote>
<p dir="auto">Unfortunately, no output</p>
]]></description><link>https://forum.qt.io/post/834451</link><guid isPermaLink="true">https://forum.qt.io/post/834451</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Tue, 09 Dec 2025 15:42:30 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Tue, 09 Dec 2025 15:39:56 GMT]]></title><description><![CDATA[<p dir="auto">Just to be sure, could you rebuild Test3 in Release mode (instead of Debug mode) and check that there's no output</p>
]]></description><link>https://forum.qt.io/post/834450</link><guid isPermaLink="true">https://forum.qt.io/post/834450</guid><dc:creator><![CDATA[hskoglund]]></dc:creator><pubDate>Tue, 09 Dec 2025 15:39:56 GMT</pubDate></item><item><title><![CDATA[Reply to qDebug() doesn&#x27;t show messages in Qt Creator&#x2F;Application Output on Tue, 09 Dec 2025 14:57:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hskoglund">@<bdi>hskoglund</bdi></a> thank you for the suggestion</p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/02de727a-6787-448b-9b6b-e729470845fa.png" alt="22a54ef4-43f2-4a1d-9246-361e6cd9131d-image.png" class=" img-fluid img-markdown" /><br />
No process with "visual" in the name according to the task manager.</p>
<p dir="auto"><img src="https://ddgobkiprc33d.cloudfront.net/c27a48e5-7315-4dae-b184-e555a0b82cb8.png" alt="111a8440-9c95-432f-aab0-3d854da04d59-image.png" class=" img-fluid img-markdown" /><br />
Nothing in the application output either...</p>
]]></description><link>https://forum.qt.io/post/834448</link><guid isPermaLink="true">https://forum.qt.io/post/834448</guid><dc:creator><![CDATA[MHMart_asc]]></dc:creator><pubDate>Tue, 09 Dec 2025 14:57:33 GMT</pubDate></item></channel></rss>